mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
9 lines
263 B
Ruby
9 lines
263 B
Ruby
|
class AddTransferFieldsToTransaction < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
change_table :transactions do |t|
|
||
|
t.references :transfer, foreign_key: true, type: :uuid
|
||
|
t.boolean :marked_as_transfer, default: false, null: false
|
||
|
end
|
||
|
end
|
||
|
end
|