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.integer :received_by_id t.date :invoiced_on t.date :paid_on t.timestamps end end end