1234567891011121314151617181920212223242526272829 |
- ActiveRecord::Schema.define(version: 20171220141141) do
- create_table "users", force: :cascade do |t|
- t.string "name"
- t.string "login"
- t.string "email"
- t.datetime "created_at", null: false
- t.datetime "updated_at", null: false
- t.string "password_digest"
- t.string "remember_digest"
- t.integer "gender", default: 0
- t.string "phone"
- t.date "birth_date"
- t.index ["login"], name: "index_users_on_login", unique: true
- end
- end
|