-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
sonwuana1 edited this page May 27, 2021
·
2 revisions
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
name | string | not null, |
string | not null, | |
hashedPassword | binary string | not null, unique |
created_at | datetime | not null |
updated-at | datetime | not null |
- index on
email, unique: true
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
name | string | not null |
userId | integer | not null, foreign key |
created_at | datetime | not null |
updated-at | datetime | not null |
-
userId
referencesusers
table
column name | data type | details |
---|---|---|
id | integer | not null, primary key |
name | string | not null |
photoLink | string | not null |
userId | integer | not null, foreign key |
albumId | integer | not null, foreign key |
created_at | datetime | not null |
updated-at | datetime | not null |
-
userId
referencesusers
table. 'album' referenced 'album' table.