diff options
author | Douwe Maan <douwe@selenight.nl> | 2017-05-24 10:10:10 -0500 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2017-05-24 10:10:10 -0500 |
commit | 0bf339f0ed2f91a805e99fc7483572ad7d22093a (patch) | |
tree | f536be0bb67775cabcc99b7540bcfd7a108bebcf /db | |
parent | 6e698b254ecddf23a866d9e98a885912102ccbce (diff) | |
download | gitlab-ce-0bf339f0ed2f91a805e99fc7483572ad7d22093a.tar.gz |
Address review
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170521184006_add_change_position_to_notes.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20170521184006_add_change_position_to_notes.rb b/db/migrate/20170521184006_add_change_position_to_notes.rb index 0b199dade25..219ed1ade4c 100644 --- a/db/migrate/20170521184006_add_change_position_to_notes.rb +++ b/db/migrate/20170521184006_add_change_position_to_notes.rb @@ -7,24 +7,6 @@ class AddChangePositionToNotes < ActiveRecord::Migration # Set this constant to true if this migration requires downtime. DOWNTIME = false - # When a migration requires downtime you **must** uncomment the following - # constant and define a short and easy to understand explanation as to why the - # migration requires downtime. - # DOWNTIME_REASON = '' - - # When using the methods "add_concurrent_index", "remove_concurrent_index" or - # "add_column_with_default" you must disable the use of transactions - # as these methods can not run in an existing transaction. - # When using "add_concurrent_index" or "remove_concurrent_index" methods make sure - # that either of them is the _only_ method called in the migration, - # any other changes should go in a separate migration. - # This ensures that upon failure _only_ the index creation or removing fails - # and can be retried or reverted easily. - # - # To disable transactions uncomment the following line and remove these - # comments: - # disable_ddl_transaction! - def change add_column :notes, :change_position, :text end |