mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 00:46:03 +01:00
7 lines
161 B
Ruby
7 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameInboxesToInboxEntries < ActiveRecord::Migration[7.0]
|
|
def change
|
|
rename_table :inboxes, :inbox_entries
|
|
end
|
|
end
|