Changes between Version 8 and Version 9 of phase0
- Timestamp:
- 03/06/24 23:57:00 (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
phase0
v8 v9 15 15 ---- 16 16 17 create table address\\17 **create table address**\\ 18 18 ( 19 19 id bigserial primary key,\\ … … 27 27 ---- 28 28 29 create table category\\29 **create table category**\\ 30 30 ( 31 31 id bigserial primary key,\\ … … 38 38 ---- 39 39 40 create table supplier\\40 **create table supplier**\\ 41 41 (\\ 42 42 id bigserial primary key,\\ … … 48 48 ---- 49 49 50 create table product\\50 **create table product**\\ 51 51 (\\ 52 52 id bigserial primary key,\\ … … 65 65 ---- 66 66 67 create table product_price\\67 **create table product_price**\\ 68 68 (\\ 69 69 product_id bigint,\\ … … 82 82 83 83 84 create table property\\84 **create table property**\\ 85 85 (\\ 86 86 id bigserial primary key,\\ … … 90 90 ---- 91 91 92 create table product_property\\92 **create table product_property**\\ 93 93 (\\ 94 94 product_id bigint,\\ … … 106 106 ---- 107 107 108 create table orders\\108 **create table orders**\\ 109 109 ( 110 110 id bigserial primary key,\\ … … 120 120 ---- 121 121 122 create table order_details\\122 **create table order_details**\\ 123 123 (\\ 124 124 order_id bigint,\\