class CreateProjects < ActiveRecord::Migration
  def change
    create_table :projects do |t|
      t.string :title,      :null => false
      t.text :description,  :null => false
      t.text :body,         :null => false
      t.date :completed_at
      t.boolean :published, :null => false, :default => false
      t.string :customer

      t.timestamps
    end
  end
end
