-
Notifications
You must be signed in to change notification settings - Fork 0
Database Schema
John Sims edited this page Jun 29, 2021
·
5 revisions
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| username | string | not null |
| hashedPassword | string | not null |
| string | not null, unique | |
| farmer | boolean | not null |
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| name | string | not null |
| price_per_day | numeric | not null |
| image | string | not null |
| location | string | not null |
| userId | int | not null |
-
userIdreferencesUserstable
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| cost_of_stay | numeric | not null |
| startDay | string | not null |
| endDay | string | not null |
| farmId | int | not null |
-
userIdreferencesUserstable -
farmIdreferencesFarmstable
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| farmId | int | not null |
| review | text | not null |
| star | int | not null |
-
userIdreferencesuserstable -
farmIdreferencesfarmstable
| Column name | data type | details |
|---|---|---|
| id | int | PK, not null |
| userId | int | not null |
| farmId | int | not null |
| message | text | not null |