123456789101112131415161718192021222324252627282930 |
- ActiveRecord::Schema.define(version: 20171222122058) 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.string "picture"
- t.index ["login"], name: "index_users_on_login", unique: true
- end
- end
|