diff options
author | Alex Sanford <alex.sanford1@gmail.com> | 2017-03-17 12:35:39 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-03-17 12:35:39 +0000 |
commit | 68e3fa0e58938152357c6fb5997f1229666b1d5c (patch) | |
tree | 98c68f6cfbfcf925fae1bc3107f610a463bea0da /db/migrate | |
parent | d68c23a00e752d347c2439541fe4dddd602ddbcc (diff) | |
download | gitlab-ce-68e3fa0e58938152357c6fb5997f1229666b1d5c.tar.gz |
Add ability to disable Merge Request URL on push
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20170301125302_add_printing_merge_request_link_enabled_to_project.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20170301125302_add_printing_merge_request_link_enabled_to_project.rb b/db/migrate/20170301125302_add_printing_merge_request_link_enabled_to_project.rb new file mode 100644 index 00000000000..f54608ecceb --- /dev/null +++ b/db/migrate/20170301125302_add_printing_merge_request_link_enabled_to_project.rb @@ -0,0 +1,18 @@ +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class AddPrintingMergeRequestLinkEnabledToProject < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + disable_ddl_transaction! + + # Set this constant to true if this migration requires downtime. + DOWNTIME = false + + def up + add_column_with_default(:projects, :printing_merge_request_link_enabled, :boolean, default: true) + end + + def down + remove_column(:projects, :printing_merge_request_link_enabled) + end +end |