Files
Dena/db/migrate/20190225171726_remove_not_null_from_currency_options.rb
2026-08-13 19:50:53 +03:30

6 lines
182 B
Ruby

class RemoveNotNullFromCurrencyOptions < ActiveRecord::Migration[5.0]
def change
change_column :currencies, :options, :string, limit: 1000, default: '{}', null: true
end
end