mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
7 lines
159 B
Ruby
7 lines
159 B
Ruby
|
class DropSystemNotifications < ActiveRecord::Migration[7.0]
|
||
|
def up
|
||
|
drop_table :user_system_notifications
|
||
|
drop_table :system_notifications
|
||
|
end
|
||
|
end
|