scinote-web/db/migrate/20230724094959_drop_system_notifications.rb
2023-07-25 15:58:40 +02:00

9 lines
190 B
Ruby

# frozen_string_literal: true
class DropSystemNotifications < ActiveRecord::Migration[7.0]
def up
drop_table :user_system_notifications
drop_table :system_notifications
end
end