Retrospring/db/migrate/20240127112216_rename_inbox...

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

8 lines
161 B
Ruby
Raw Normal View History

2024-01-27 04:31:36 -08:00
# frozen_string_literal: true
class RenameInboxesToInboxEntries < ActiveRecord::Migration[7.0]
def change
rename_table :inboxes, :inbox_entries
end
end