debian-mirror-gitlab/db/migrate/20200210184410_create_operations_strategies_table.rb
2020-05-24 23:13:21 +05:30

16 lines
519 B
Ruby

# 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