mastodon/db/migrate/20191031163205_change_list_...

10 lines
211 B
Ruby

# frozen_string_literal: true
class ChangeListAccountFollowNullable < ActiveRecord::Migration[5.2]
def change
safety_assured do
change_column_null :list_accounts, :follow_id, true
end
end
end