-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
trwong edited this page Nov 19, 2017
·
13 revisions
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| first_name | string | not null, indexed |
| last_name | string | not null, indexed |
| string | not null, indexed, unique | |
| img_url | string | not null |
| password_digest | string | not null |
| session_token | string | not null, indexed, unique |
| created_at | datetime | not null |
| updated_at | datetime | not null |