Retrospring/db/migrate/20240127112216_rename_inbox...

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

6 lines
130 B
Ruby
Raw Normal View History

class RenameInboxesToInboxEntries < ActiveRecord::Migration[7.0]
def change
rename_table :inboxes, :inbox_entries
end
end