-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
ZaviarBrown edited this page Jun 28, 2021
·
3 revisions
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| username | string | not null |
| hashedPassword | string | not null |
| string | not null, unique | |
| cashBalance | numeric |
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| name | string | not null |
| price | numeric | not null |
| description | text | not null |
| laborForce | int | not null |
| ticker | string | not null |
| crypto | string | not null |
| planet_leader | string | not null |
| top_export | string | not null |
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| planetId | int | not null |
| shares | int | not null |
| planetName | string | not null |
| ticker | string | not null |
| crypto | string | not null |
-
userIdreferencesuserstable -
planetIdreferencesplanetstable
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| planetId | int | not null |
| shares | int | not null |
| price_paid | numeric | not null |
| orderType | string | not null |
-
userIdreferencesuserstable -
planetIdreferencesplanetstable