Sha256: 5fcbdfd1af394943ab9ea2e5fc860569ca90e14d1041593de4e438fb7dd9afa2
Contents?: true
Size: 1.12 KB
Versions: 6
Compression:
Stored size: 1.12 KB
Contents
create_table "microposts", force: true do |t| t.string "content" t.integer "user_id" t.datetime "created_at" t.datetime "updated_at" end add_index "microposts", ["user_id", "created_at"], name: "index_microposts_on_user_id_and_created_at" create_table "relationships", force: true do |t| t.integer "follower_id" t.integer "followed_id" t.datetime "created_at" t.datetime "updated_at" end add_index "relationships", ["followed_id"], name: "index_relationships_on_followed_id" add_index "relationships", ["follower_id", "followed_id"], name: "index_relationships_on_follower_id_and_followed_id", unique: true add_index "relationships", ["follower_id"], name: "index_relationships_on_follower_id" create_table "users", force: true do |t| t.string "name" t.string "email" t.datetime "created_at" t.datetime "updated_at" t.string "password_digest" t.string "remember_token" t.boolean "admin" end add_index "users", ["email"], name: "index_users_on_email", unique: true add_index "users", ["remember_token"], name: "index_users_on_remember_token"
Version data entries
6 entries across 6 versions & 1 rubygems