ActiveRecord::Schema.define(:version => 0) do create_table "authors", :force => true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "accounts", :force => true do |t| t.integer "author_id" t.string "password" t.datetime "created_at" t.datetime "updated_at" end create_table "addresses", :force => true do |t| t.integer "author_id" t.string "street" t.datetime "created_at" t.datetime "updated_at" end create_table "profiles", :force => true do |t| t.integer "author_id" t.integer "age" t.datetime "created_at" t.datetime "updated_at" end create_table "comments", :force => true do |t| t.text "body" t.integer "author_id" t.datetime "created_at" t.datetime "updated_at" end create_table "posts", :force => true do |t| t.text "body" t.integer "author_id" t.datetime "created_at" t.datetime "updated_at" end create_table "sessions", :force => true do |t| t.text "description" t.integer "author_id" t.datetime "created_at" t.datetime "updated_at" end end