mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
* Create sidebar element and working with turbo * Add overview fields * Add columns to transations and tidy modal * permit new transaction params * Add autosubmit form controller * remove unused show code
6 lines
203 B
Ruby
6 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
|