Sha256: 49dbb59d71dc0e01536953c2bb5b23faca897515a3829dce5fc8a1da2415688a
Contents?: true
Size: 1.32 KB
Versions: 26
Compression:
Stored size: 1.32 KB
Contents
# encoding: UTF-8 # This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # # Note that this schema.rb definition is the authoritative source for your # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 20150107032724) do create_table "users", force: true do |t| t.string "name" t.string "email" t.string "password_hash" t.string "remember_token" t.datetime "remember_token_expires_at" t.string "reset_token" t.datetime "reset_token_expires_at" t.datetime "created_at" t.datetime "updated_at" end add_index "users", ["email"], name: "index_users_on_email", unique: true add_index "users", ["remember_token"], name: "index_users_on_remember_token" add_index "users", ["reset_token"], name: "index_users_on_reset_token" end
Version data entries
26 entries across 26 versions & 1 rubygems