-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
lukewhchen edited this page May 11, 2018
·
7 revisions
| column | data type | detail |
|---|---|---|
| id | integer | not null, primary key |
| first_name | string | not null |
| last_name | string | not null |
| string | not null | |
| password_digest | string | not null |
| session_token | string | not null |
| hometown | string | optional |
| workplace | string | optional |
| school | string | optional |
| gender | string | optional |
| image_url | string | optional |
| timestamps | datetime |
| column | data type | detail |
|---|---|---|
| id | integer | not null, primary key |
| body | text | not null |
| author_id | integer | not null, foreign key |
| post_image_url | string | |
| timestamps | datetime |
| column | data type | detail |
|---|---|---|
| id | integer | not null, primary key |
| body | string | not null |
| author_id | integer | not null, foreign key |
| timestamps | datetime |
| column | data type | detail |
|---|---|---|
| id | integer | not null, primary key |
| post_id | integer | not null, foreign key |
| author_id | integer | not null, foreign key |
| timestamps | datetime |
| column | data type | detail |
|---|---|---|
| id | integer | not null, primary key |
| friend_id | integer | not null, foreign key |
| timestamps | datetime |