|
1 |
| -# frozen_string_literal: true |
2 |
| - |
3 | 1 | # This file is auto-generated from the current state of the database. Instead
|
4 | 2 | # of editing this file, please use the migrations feature of Active Record to
|
5 | 3 | # incrementally modify your database, and then regenerate this schema definition.
|
|
12 | 10 | #
|
13 | 11 | # It's strongly recommended that you check this file into your version control system.
|
14 | 12 |
|
15 |
| -ActiveRecord::Schema.define(version: 20_191_001_161_649) do |
16 |
| - create_table 'users', force: :cascade do |t| |
17 |
| - t.string 'email', default: '', null: false |
18 |
| - t.string 'encrypted_password', default: '', null: false |
19 |
| - t.string 'reset_password_token' |
20 |
| - t.datetime 'reset_password_sent_at' |
21 |
| - t.datetime 'remember_created_at' |
22 |
| - t.datetime 'created_at', precision: 6, null: false |
23 |
| - t.datetime 'updated_at', precision: 6, null: false |
24 |
| - t.string 'provider' |
25 |
| - t.string 'uid' |
26 |
| - t.index ['email'], name: 'index_users_on_email', unique: true |
27 |
| - t.index ['reset_password_token'], name: 'index_users_on_reset_password_token', unique: true |
| 13 | +ActiveRecord::Schema.define(version: 2019_10_01_161649) do |
| 14 | + |
| 15 | + create_table "users", force: :cascade do |t| |
| 16 | + t.string "email", default: "", null: false |
| 17 | + t.string "encrypted_password", default: "", null: false |
| 18 | + t.string "reset_password_token" |
| 19 | + t.datetime "reset_password_sent_at" |
| 20 | + t.datetime "remember_created_at" |
| 21 | + t.datetime "created_at", precision: 6, null: false |
| 22 | + t.datetime "updated_at", precision: 6, null: false |
| 23 | + t.string "provider" |
| 24 | + t.string "uid" |
| 25 | + t.index ["email"], name: "index_users_on_email", unique: true |
| 26 | + t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true |
28 | 27 | end
|
| 28 | + |
29 | 29 | end
|
0 commit comments