From cd4db7b4171a090d25391f4cf0425ece3692fa9f Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Mon, 13 Mar 2017 15:39:41 +0200 Subject: Reserve few project and nested group paths That have wildcard routes associated and not reserved yet: artifacts, graphs, badges and refs Signed-off-by: Dmitriy Zaporozhets --- db/schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 3ec5461f600..ca88198079f 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170306170512) do +ActiveRecord::Schema.define(version: 20170313133418) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" -- cgit v1.2.1 From 203bb0bc546cfa99272a858426904030d9292615 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Wed, 15 Mar 2017 11:50:20 -0700 Subject: Revert "Merge branch 'option-to-be-notified-of-own-activity' into 'master' This reverts commit 5e9666880376b3f53edb95cba77b5642d3cc1810, reversing changes made to b35378a938e22f745b6c6ea32b53cb50f9b6c627. --- db/schema.rb | 1 - 1 file changed, 1 deletion(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index ca88198079f..612a86c2612 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1318,7 +1318,6 @@ ActiveRecord::Schema.define(version: 20170313133418) do t.string "incoming_email_token" t.string "organization" t.boolean "authorized_projects_populated" - t.boolean "notified_of_own_activity", default: false, null: false t.boolean "ghost" end -- cgit v1.2.1 From 6ba69483bde804f9760d5b9519fd3c37820ef857 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Wed, 15 Mar 2017 13:58:08 -0400 Subject: Revert the AddNotifiedOfOwnActivityToUsers migration --- db/schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 612a86c2612..3bef910c1d6 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170313133418) do +ActiveRecord::Schema.define(version: 20170315174634) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" -- cgit v1.2.1 From 68e3fa0e58938152357c6fb5997f1229666b1d5c Mon Sep 17 00:00:00 2001 From: Alex Sanford Date: Fri, 17 Mar 2017 12:35:39 +0000 Subject: Add ability to disable Merge Request URL on push --- db/schema.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 3bef910c1d6..6eb3c95de93 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1003,6 +1003,7 @@ ActiveRecord::Schema.define(version: 20170315174634) do t.boolean "lfs_enabled" t.text "description_html" t.boolean "only_allow_merge_if_all_discussions_are_resolved" + t.boolean "printing_merge_request_link_enabled", default: true, null: false end add_index "projects", ["ci_id"], name: "index_projects_on_ci_id", using: :btree -- cgit v1.2.1