diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-09-15 21:59:01 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-09-19 10:07:14 +0200 |
commit | abfceb1e565490bb75e9a4fba0571cb2390fa5d8 (patch) | |
tree | 050041d279e30ccf96c5f6f7b4ea600281d2486e /db | |
parent | 4a5c21728ee4e6c3ef8e1c410ee0f0c9a47634cc (diff) | |
download | gitlab-ce-abfceb1e565490bb75e9a4fba0571cb2390fa5d8.tar.gz |
Cleanup changes
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20160907131111_add_environment_type_to_environments.rb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/db/migrate/20160907131111_add_environment_type_to_environments.rb b/db/migrate/20160907131111_add_environment_type_to_environments.rb index d22b3f4d2d1..fac73753d5b 100644 --- a/db/migrate/20160907131111_add_environment_type_to_environments.rb +++ b/db/migrate/20160907131111_add_environment_type_to_environments.rb @@ -1,28 +1,8 @@ -# See http://doc.gitlab.com/ce/development/migration_style_guide.html -# for more information on how to write migrations for GitLab. - class AddEnvironmentTypeToEnvironments < ActiveRecord::Migration include Gitlab::Database::MigrationHelpers - # 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" 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" make sure that this - # method 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 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 :environments, :environment_type, :string end |