class CreateInvoices < ActiveRecord::Migration def change create_table :invoices do |t| t.string :title t.float :total_paid t.float :total_charged t.boolean :paid t.timestamps end end end