20171201000000_change_account_id_nonnullable_in_lists.rb 209 B

1234567
  1. require Rails.root.join('lib', 'mastodon', 'migration_helpers')
  2. class ChangeAccountIdNonnullableInLists < ActiveRecord::Migration[5.1]
  3. def change
  4. change_column_null :lists, :account_id, false
  5. end
  6. end