summaryrefslogtreecommitdiff
path: root/db/migrate/20200210184410_create_operations_strategies_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200210184410_create_operations_strategies_table.rb')
-rw-r--r--db/migrate/20200210184410_create_operations_strategies_table.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20200210184410_create_operations_strategies_table.rb b/db/migrate/20200210184410_create_operations_strategies_table.rb
deleted file mode 100644
index 4d65267c1a7..00000000000
--- a/db/migrate/20200210184410_create_operations_strategies_table.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class CreateOperationsStrategiesTable < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- create_table :operations_strategies do |t|
- t.references :feature_flag, index: true, null: false, foreign_key: { to_table: :operations_feature_flags, on_delete: :cascade }
- t.string :name, null: false, limit: 255
- t.jsonb :parameters, null: false, default: {}
- end
- end
- # rubocop:enable Migration/PreventStrings
-end