Add extra bills tracking

This commit is contained in:
Andrew Tomaka 2023-02-24 19:08:12 -05:00
parent a21639ff6f
commit 63487a9cba
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
22 changed files with 353 additions and 3 deletions

View file

@ -0,0 +1,11 @@
class CreateExtraBills < ActiveRecord::Migration[7.0]
def change
create_table :extra_bills do |t|
t.string :description
t.decimal :amount
t.boolean :deduct_autopaid
t.timestamps
end
end
end