Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-10 22:51:46 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-10 22:51:46 +0300
commit100d750bc5ec4c6c5be11eb6f4100fe38b4ddee7 (patch)
tree3339d7451f13ba1e6cb4a7362c08e68424d4a32d /db/schema.rb
parent73179685b0517dcdebe696b5987b47822b9bf6ed (diff)
Add feature to disable version check
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index a686bb4b3cd..d63e1bc17a9 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: 20150225065047) do
+ActiveRecord::Schema.define(version: 20150310194358) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -27,6 +27,7 @@ ActiveRecord::Schema.define(version: 20150225065047) do
t.string "home_page_url"
t.integer "default_branch_protection", default: 2
t.boolean "twitter_sharing_enabled", default: true
+ t.boolean "version_check_enabled", default: true
end
create_table "broadcast_messages", force: true do |t|