|
@@ -10,7 +10,7 @@
|
10
|
10
|
#
|
11
|
11
|
# It's strongly recommended that you check this file into your version control system.
|
12
|
12
|
|
13
|
|
-ActiveRecord::Schema.define(version: 20161231185937) do
|
|
13
|
+ActiveRecord::Schema.define(version: 20170210180426) do
|
14
|
14
|
|
15
|
15
|
create_table "activities", force: :cascade do |t|
|
16
|
16
|
t.string "public_name"
|
|
@@ -80,14 +80,20 @@ ActiveRecord::Schema.define(version: 20161231185937) do
|
80
|
80
|
t.index ["user_id"], name: "index_sessions_on_user_id"
|
81
|
81
|
end
|
82
|
82
|
|
|
83
|
+ create_table "tokens", force: :cascade do |t|
|
|
84
|
+ t.string "token"
|
|
85
|
+ t.datetime "expires"
|
|
86
|
+ t.string "tokentype"
|
|
87
|
+ t.integer "user_id"
|
|
88
|
+ t.index ["token"], name: "index_tokens_on_token", unique: true
|
|
89
|
+ end
|
|
90
|
+
|
83
|
91
|
create_table "users", force: :cascade do |t|
|
84
|
92
|
t.string "email"
|
85
|
93
|
t.string "password_digest"
|
86
|
|
- t.string "confirmation_token"
|
87
|
|
- t.string "password_reset_token"
|
88
|
94
|
t.integer "person_id"
|
89
|
|
- t.datetime "created_at", null: false
|
90
|
|
- t.datetime "updated_at", null: false
|
|
95
|
+ t.datetime "created_at", null: false
|
|
96
|
+ t.datetime "updated_at", null: false
|
91
|
97
|
t.index ["email"], name: "index_users_on_email", unique: true
|
92
|
98
|
t.index ["person_id"], name: "index_users_on_person_id", unique: true
|
93
|
99
|
end
|