-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
Dayton Chen edited this page Mar 14, 2022
·
9 revisions

| column name | column type | constraints |
|---|---|---|
| id | integer | not null, primary key |
| username | varchar | not null, unique |
| password | string | not null |
| emailAddress | varchar | not null, unique |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| column name | column type | constraints |
|---|---|---|
| id | integer | not null, primary key |
| name | varchar | not null |
| image | varchar | not null |
| region | string | not null |
| type | string | not null |
| column name | column type | constraints |
|---|---|---|
| id | integer | not null, primary key |
| review | text | not null |
| rating | numeric | |
| created_at | datetime | not null |
| updated_at | datetime | not null |
| trainerId | integer | not null |
| pokemonId | integer | not null |
-
trainerIdreferencestrainerstable -
pokemonIdreferencespokemonstable
| column name | column type | constraints |
|---|---|---|
| id | integer | not null, primary key |
| catchstatus | varchar | not null |
| trainerId | integer | not null |
-
trainerIdreferencestrainerstable
| column name | column type | constraints |
|---|---|---|
| id | integer | not null, primary key |
| pokemonId | integer | not null |
| catchlistId | integer | not null |
-
pokemonIdreferencespokemonstable -
catchlistIdreferencescatchliststable