20191031163205_change_list_account_follow_nullable.rb 211 B

123456789
  1. # frozen_string_literal: true
  2. class ChangeListAccountFollowNullable < ActiveRecord::Migration[5.2]
  3. def change
  4. safety_assured do
  5. change_column_null :list_accounts, :follow_id, true
  6. end
  7. end
  8. end