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