-
Notifications
You must be signed in to change notification settings - Fork 0
Schema
Anna Oh edited this page Nov 21, 2017
·
5 revisions
| Users | Data Type | Validations |
|---|---|---|
| id | integer | not null, primary key |
| username | string | not null, indexed |
| string | not null, indexed, unique | |
| img_url | string | |
| password_digest | string | not null |
| session_token | string | not null, indexed, unique |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| Photos | Data Type | Validations |
|---|---|---|
| id | integer | not null, primary key |
| img_url | string | not null |
| body | text | |
| author_id | integer | not null, indexed, foreign |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| Comments | Data Type | Validations |
|---|---|---|
| id | integer | not null, primary key |
| body | text | not null |
| author_id | integer | not null, indexed, foreign |
| photo_id | integer | not null, indexed, foreign |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| Likes | Data Type | Validations |
|---|---|---|
| id | integer | not null, primary key |
| user_id | integer | not null, indexed, foreign |
| photo_id | integer | not null, indexed, foreign |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| Following | Data Type | Validations |
|---|---|---|
| id | integer | not null, primary key |
| followers_id | integer | not null, indexed, foreign |
| following_id | integer | not null, indexed, foreign |
| created_at | datetime | not null |
| updated_at | datetime | not null |