# 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 => 4) do create_table "blogs", :force => true do |t| t.column "title", :string t.column "author_id", :integer t.column "updated_at", :date t.column "created_at", :date end create_table "posts", :force => true do |t| t.column "title", :string t.column "body", :string t.column "updated_at", :date t.column "created_at", :date t.column "blog_id", :integer end create_table "users", :force => true do |t| t.column "login", :string t.column "email", :string t.column "hashed_password", :string t.column "salt", :string t.column "role", :string end end