-
Notifications
You must be signed in to change notification settings - Fork 1
Database Schema
Yanelys Mena edited this page Mar 14, 2022
·
22 revisions

| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| username | string | not null, unique |
| string | not null, unique | |
| hashed_password | string | not null |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null |
| price | float | not null |
| details | text | not null |
| description | text | not null |
| quantity | integer | not null |
| user_id | integer | not null, foreign key |
| product_type_id | integer | not null, foreign key |
| pet_type_id | integer | not null, foreign key |
-
user_idreferencesUserstable -
product_type_idreferencesProductTypestable -
pet_type_idreferencesPetTypestable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null, unique |
| url | string |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| product_id | integer | not null, foreign key |
| url | string | not null |
-
product_idreferencesProductstable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| title | string | not null, unique |
| icon | string |
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| content | text | |
| rating | integer | not null |
| user_id | integer | not null, foreign key |
| product_id | integer | not null, foreign key |
| created_at | date | not null |
| updated_at | date | not null |
| url | string |
-
product_idreferencesProductstable -
user_idreferencesUserstable
| column name | data type | details |
|---|---|---|
| id | integer | not null, primary key |
| user_id | integer | not null, foreign key |
| product_id | integer | not null, foreign key |
| purchase_date | date | not null |
| quantity | integer | not null |
-
product_idreferencesProductstable -
user_idreferencesUserstable