-
Notifications
You must be signed in to change notification settings - Fork 0
Schema
Sam O'Donnell edited this page Mar 2, 2019
·
2 revisions
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| name | string | not null, indexed, unique |
| string | not null, indexed, unique | |
| password_digest | string | not null |
| session_token | string | not null, indexed, unique |
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null |
| body | text | not null |
| topic | string | |
| user_id | integer | not null, foreign key |
-
user_idreferencesusers
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| user_id | integer | not null, indexed, foreign key |
| story_id | integer | not null, indexed, foreign key |
-
user_idreferencesusers -
story_idreferencesstories
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| user_id | integer | not null, indexed, foreign key |
| story_id | integer | not null, indexed, foreign key |
-
user_idreferencesusers -
story_idreferencesstories
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| body | text | not null |
| user_id | integer | not null, indexed, foreign key |
| story_id | integer | not null, indexed, foreign key |
-
user_idreferencesusers -
story_idreferencesstories
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| follower_id | integer | not null, indexed, foreign key |
| followed_id | integer | not null, indexed, foreign key |
-
follower_idandfollowed_idreferenceusers
column name |
data type |
details |
|---|---|---|
| id | integer | not null, primary key |
| name | string | not null |
| story_id | integer | not null, foreign key |
-
story_idreferencestories