-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
Ryan D edited this page Jun 17, 2021
·
3 revisions
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| username | string | not null |
| hashedPassword | string | not null |
| fullName | string | not null |
| string | not null, unique | |
| cashBalance | decimal | not null |
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| planetName | string | not null |
| currencyPrice | decimal | not null |
| description | string | not null |
| laborForce | int | not null |
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| planetId | int | not null |
| numberShares | int | not null |
-
userIdreferencesuserstable -
planetIdreferencesplanetstable
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| planetId | int | not null |
| numberShares | int | not null |
| pricePaid | decimal | not null |
-
userIdreferencesuserstable -
planetIdreferencesplanetstable