Retrospring/db/migrate/20231026032527_rename_appen...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
165 B
Ruby
Raw Normal View History

class RenameAppendableToReaction < ActiveRecord::Migration[7.0]
def change
rename_table :appendables, :reactions
remove_column :reactions, :type
end
end