Sha256: dcc37b51a85ab6ca48ae43081f4b0eefc760c0bb58539de82131f8d1da2887d5
Contents?: true
Size: 671 Bytes
Versions: 4
Compression:
Stored size: 671 Bytes
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 "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
4 entries across 4 versions & 2 rubygems