Sha256: 77b8250583227de2f26581922ba599e1f1164f2b1896e1ccee848e06c590d2ec
Contents?: true
Size: 1.13 KB
Versions: 7
Compression:
Stored size: 1.13 KB
Contents
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
Version data entries
7 entries across 7 versions & 1 rubygems