Changes between Version 8 and Version 9 of phase0


Ignore:
Timestamp:
03/06/24 23:57:00 (3 months ago)
Author:
201166
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • phase0

    v8 v9  
    1515----
    1616
    17 create table address\\
     17**create table address**\\
    1818(
    1919    id      bigserial primary key,\\
     
    2727----
    2828
    29 create table category\\
     29**create table category**\\
    3030(
    3131    id          bigserial primary key,\\
     
    3838----
    3939
    40 create table supplier\\
     40**create table supplier**\\
    4141(\\
    4242    id           bigserial primary key,\\
     
    4848----
    4949
    50 create table product\\
     50**create table product**\\
    5151(\\
    5252    id          bigserial primary key,\\
     
    6565----
    6666
    67 create table product_price\\
     67**create table product_price**\\
    6868(\\
    6969    product_id bigint,\\
     
    8282
    8383
    84 create table property\\
     84**create table property**\\
    8585(\\
    8686    id   bigserial primary key,\\
     
    9090----
    9191
    92 create table product_property\\
     92**create table product_property**\\
    9393(\\
    9494    product_id  bigint,\\
     
    106106----
    107107
    108 create table orders\\
     108**create table orders**\\
    109109(
    110110    id      bigserial primary key,\\
     
    120120----
    121121
    122 create table order_details\\
     122**create table order_details**\\
    123123(\\
    124124    order_id   bigint,\\