diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-10-05 12:23:38 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-10-05 12:23:38 -0400 |
commit | fc59c45d58124c4fc23d62ad2ed65cbfd6cb3563 (patch) | |
tree | 69f2ac4aaf43599641a395c6f936e717ff3f5d02 /db | |
parent | 8a78c4ea06c7bd3a4c6a0ea9943891327b90cd35 (diff) | |
download | gitlab-ce-fc59c45d58124c4fc23d62ad2ed65cbfd6cb3563.tar.gz |
Remove the option to disable CIrs-remove-ci-disable
This option only existed to ease the CI-to-CE/EE migration process.
This commit partially reverts 8b05abe816b0c681ac218096b294311dd04fde8b
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb | 5 | ||||
-rw-r--r-- | db/schema.rb | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb b/db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb new file mode 100644 index 00000000000..be6aa810bb5 --- /dev/null +++ b/db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb @@ -0,0 +1,5 @@ +class RemoveCiEnabledFromApplicationSettings < ActiveRecord::Migration + def change + remove_column :application_settings, :ci_enabled, :boolean, null: false, default: true + end +end diff --git a/db/schema.rb b/db/schema.rb index 72609da93f1..f8ae6893df1 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: 20150930095736) do +ActiveRecord::Schema.define(version: 20151005162154) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -46,7 +46,6 @@ ActiveRecord::Schema.define(version: 20150930095736) do t.integer "session_expire_delay", default: 10080, null: false t.text "import_sources" t.text "help_page_text" - t.boolean "ci_enabled", default: true, null: false end create_table "audit_events", force: true do |t| |