mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
7 lines
203 B
Ruby
7 lines
203 B
Ruby
|
class AddNotesAndExcludedToTransaction < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :transactions, :excluded, :boolean, default: false
|
||
|
add_column :transactions, :notes, :text
|
||
|
end
|
||
|
end
|