about summary refs log tree commit diff
path: root/db/migrate/20191031163205_change_list_account_follow_nullable.rb
blob: 43ebfe89222eb544846e5ffd6087e48b50abb1bb (plain) (blame)
1
2
3
4
5
6
7
class ChangeListAccountFollowNullable < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      change_column_null :list_accounts, :follow_id, true
    end
  end
end