ActiveRecord::Schema.define(:version => 1) do

  create_table "authors", :force => true do |t| 
    t.column "first_name", :string
    t.column "last_name", :string
    t.column "email", :string
    t.column "phone", :string
  end
end