# This file is autogenerated. Instead of editing this file, please use the # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. ActiveRecord::Schema.define(:version => 3) do create_table "comments", :force => true do |t| t.column "content", :text t.column "author", :string t.column "post_id", :integer end create_table "posts", :force => true do |t| t.column "title", :string t.column "created_at", :datetime t.column "content", :text t.column "author", :string t.column "permalink", :string end end