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

| column name | column type | constraints |
|---|---|---|
| id | integer | not null, primary key |
| first_name | varchar | not null |
| last_name | varchar | not null |
| 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 | string | not null |
| image | string | not null |
| description | text | 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 | string | 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