about summary refs log tree commit diff
path: root/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb
blob: 3369e3b9e97ab7f28fbf69584c908807e5437756 (plain) (blame)
1
2
3
4
5
class ChangeAccountIdNonnullableInLists < ActiveRecord::Migration[5.1]
  def change
    change_column_null :lists, :account_id, false
  end
end