Changes between Version 2 and Version 3 of phase0
- Timestamp:
- 03/06/24 23:53:29 (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
phase0
v2 v3 25 25 ); 26 26 27 ---- 28 27 29 create table category 28 30 ( … … 34 36 ); 35 37 38 ---- 39 36 40 create table supplier 37 41 ( … … 41 45 phone_number varchar(255) 42 46 ); 47 48 ---- 43 49 44 50 create table product … … 57 63 ); 58 64 65 ---- 66 59 67 create table product_price 60 68 ( … … 71 79 ); 72 80 81 ---- 82 73 83 74 84 create table property … … 77 87 name varchar(255) 78 88 ); 89 90 ---- 79 91 80 92 create table product_property … … 92 104 ); 93 105 106 ---- 107 94 108 create table orders 95 109 ( … … 103 117 on update cascade 104 118 ); 119 120 ---- 105 121 106 122 create table order_details