Files
fizzy/db/migrate/20250412170620_remove_account_ids.rb
T
2025-04-12 20:06:34 +02:00

10 lines
286 B
Ruby

class RemoveAccountIds < ActiveRecord::Migration[8.1]
def change
remove_column :closure_reasons, :account_id
remove_column :collections, :account_id
remove_column :tags, :account_id
remove_column :users, :account_id
remove_column :workflows, :account_id
end
end