diff options
author | Tiago Botelho <tiagonbotelho@hotmail.com> | 2017-06-29 12:43:01 +0100 |
---|---|---|
committer | Tiago Botelho <tiagonbotelho@hotmail.com> | 2017-07-20 09:59:56 +0100 |
commit | 3491b19a4e67a9f439c12afac45ef38f3fce0ef5 (patch) | |
tree | a548a111e88c046315e0a2633aba5656be7603ba /db | |
parent | f0e4e3993b1f5a21ab61aaff95f73ac4e5b88ad3 (diff) | |
download | gitlab-ce-3491b19a4e67a9f439c12afac45ef38f3fce0ef5.tar.gz |
Add specs for ProjectDestroyWorker
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170428064307_add_column_delete_error_to_projects.rb | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/db/migrate/20170428064307_add_column_delete_error_to_projects.rb b/db/migrate/20170428064307_add_column_delete_error_to_projects.rb index ef5fc2cdea5..09f9d9b5b7a 100644 --- a/db/migrate/20170428064307_add_column_delete_error_to_projects.rb +++ b/db/migrate/20170428064307_add_column_delete_error_to_projects.rb @@ -1,30 +1,6 @@ -# See http://doc.gitlab.com/ce/development/migration_style_guide.html -# for more information on how to write migrations for GitLab. - class AddColumnDeleteErrorToProjects < 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", "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 :projects, :delete_error, :text end |