Skip to content

Commit 8e0d381

Browse files
committed
Update schema.rb
1 parent 5e9fa09 commit 8e0d381

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

db/schema.rb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
# This file is auto-generated from the current state of the database. Instead
42
# of editing this file, please use the migrations feature of Active Record to
53
# incrementally modify your database, and then regenerate this schema definition.
@@ -12,18 +10,20 @@
1210
#
1311
# It's strongly recommended that you check this file into your version control system.
1412

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
2827
end
28+
2929
end

0 commit comments

Comments
 (0)