mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
Fix import migration (#1227)
This commit is contained in:
parent
b1d2dc5e97
commit
cb75c537fe
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
class AddImportTypes < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
change_table :imports do |t|
|
||||
t.string :type, null: false
|
||||
t.string :type
|
||||
t.string :date_col_label, default: "date"
|
||||
t.string :amount_col_label, default: "amount"
|
||||
t.string :name_col_label, default: "name"
|
||||
|
@ -19,6 +19,10 @@ class AddImportTypes < ActiveRecord::Migration[7.2]
|
|||
t.string :error
|
||||
end
|
||||
|
||||
Import.update_all(type: "TransactionImport")
|
||||
|
||||
change_column_null :imports, :type, false
|
||||
|
||||
# Add import references so we can associate imported resources after the import
|
||||
add_reference :account_entries, :import, foreign_key: true, type: :uuid
|
||||
add_reference :accounts, :import, foreign_key: true, type: :uuid
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue