FIX revert system_notification_histories

This commit is contained in:
jasder
2021-10-29 16:00:46 +08:00
parent ab2e1ffa0e
commit 6c67b92bb1
10 changed files with 178 additions and 44 deletions

View File

@@ -0,0 +1,10 @@
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