summaryrefslogtreecommitdiff
path: root/db/migrate/20200128184209_add_usage_to_pages_domains.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200128184209_add_usage_to_pages_domains.rb')
-rw-r--r--db/migrate/20200128184209_add_usage_to_pages_domains.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20200128184209_add_usage_to_pages_domains.rb b/db/migrate/20200128184209_add_usage_to_pages_domains.rb
deleted file mode 100644
index 292490078cd..00000000000
--- a/db/migrate/20200128184209_add_usage_to_pages_domains.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class AddUsageToPagesDomains < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
- PAGES_USAGE = 0
-
- disable_ddl_transaction!
-
- def up
- add_column_with_default :pages_domains, :usage, :integer, limit: 2, default: PAGES_USAGE, allow_null: false # rubocop:disable Migration/AddColumnWithDefault
- end
-
- def down
- remove_column :pages_domains, :usage
- end
-end