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"