-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
NoahNim edited this page Aug 23, 2021
·
9 revisions
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| name | string(30) | not null |
| string(250) | not null, unique | |
| biography | text(2000) | nullable |
| profilePhoto | string(9999) | nullable |
| eventPhoto | string(9999) | nullable |
| hashedPassword | string.binary | not null |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| name | string(255) | not null |
| description | text | nullable |
| date | date | not null |
| imgUrl | string | not null |
| userId | integer | not null, foreignKey |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| content | text(2000) | not null |
| userId | integer | not null, foreignKey |
| eventId | integer | not null, foreignKey |
| created_at | datetime | not null |
| updated_at | datetime | not null |