scinote-web/db/migrate/20230724094959_drop_system_notifications.rb

9 lines
190 B
Ruby
Raw Normal View History

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