mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 14:13:36 +01:00
5 lines
130 B
Ruby
5 lines
130 B
Ruby
class RenameInboxesToInboxEntries < ActiveRecord::Migration[7.0]
|
|
def change
|
|
rename_table :inboxes, :inbox_entries
|
|
end
|
|
end
|