Add extra bills tracking
This commit is contained in:
parent
a21639ff6f
commit
63487a9cba
22 changed files with 353 additions and 3 deletions
11
db/migrate/20230224232804_create_extra_bills.rb
Normal file
11
db/migrate/20230224232804_create_extra_bills.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue