ActiveRecord::Schema.define do create_table "articles", :force => true do |t| t.column "title", :string t.column "body", :text t.column "body_source", :text t.column "body_image", :text t.column "created_at", :datetime t.column "updated_at", :datetime end create_table "users", :force => true do |t| t.column "name", :string t.column "bio", :text end end