forgeplus/db/migrate/20211012060837_create_syste...

11 lines
248 B
Ruby

class CreateSystemNotificationHistories < ActiveRecord::Migration[5.2]
def change
create_table :system_notification_histories do |t|
t.references :system_notification
t.references :user
t.timestamps
end
end
end