summaryrefslogtreecommitdiff
path: root/db/migrate/20160811172945_add_can_push_to_keys.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160811172945_add_can_push_to_keys.rb')
-rw-r--r--db/migrate/20160811172945_add_can_push_to_keys.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20160811172945_add_can_push_to_keys.rb b/db/migrate/20160811172945_add_can_push_to_keys.rb
deleted file mode 100644
index 2e78ab0249e..00000000000
--- a/db/migrate/20160811172945_add_can_push_to_keys.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class AddCanPushToKeys < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
- disable_ddl_transaction!
-
- DOWNTIME = false
-
- def up
- add_column_with_default(:keys, :can_push, :boolean, default: false, allow_null: false)
- end
-
- def down
- remove_column(:keys, :can_push)
- end
-end