mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00: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
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
|