20171201000000_change_account_id_nonnullable_in_lists.rb 176 B

1234567
  1. class ChangeAccountIdNonnullableInLists < ActiveRecord::Migration[5.1]
  2. def change
  3. safety_assured do
  4. change_column_null :lists, :account_id, false
  5. end
  6. end
  7. end