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