Convert Account::SingleUserExport to User::DataExport

This commit is contained in:
Stanko K.R.
2026-01-09 16:15:32 +01:00
parent 161efb0b8e
commit 19ae555c2e
31 changed files with 643 additions and 395 deletions
@@ -1,5 +0,0 @@
class AddTypeToAccountExports < ActiveRecord::Migration[8.2]
def change
add_column :account_exports, :type, :string
end
end
@@ -0,0 +1,7 @@
class RenameAccountExportsToExports < ActiveRecord::Migration[8.2]
def change
rename_table :account_exports, :exports
add_column :exports, :type, :string
add_index :exports, :type
end
end