Convert Account::SingleUserExport to User::DataExport
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user