summaryrefslogtreecommitdiff
path: root/db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb')
-rw-r--r--db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb b/db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb
deleted file mode 100644
index fde9dee980e..00000000000
--- a/db/migrate/20160801163709_add_submitted_as_ham_to_spam_logs.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddSubmittedAsHamToSpamLogs < ActiveRecord::Migration[4.2]
- 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 = ''
-
- disable_ddl_transaction!
-
- def up
- add_column_with_default :spam_logs, :submitted_as_ham, :boolean, default: false
- end
-
- def down
- remove_column :spam_logs, :submitted_as_ham
- end
-end