Changes between Version 2 and Version 3 of DatabaseCreation


Ignore:
Timestamp:
04/12/26 21:02:03 (3 weeks ago)
Author:
231133
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseCreation

    v2 v3  
    1919}}}
    2020
     21{{{
    2122CREATE TABLE order_cart (
    2223    user_id bigint NOT NULL,
     
    2829    CONSTRAINT chk_order_total CHECK ((total_price >= (0)::numeric))
    2930);
     31}}}
    3032
    3133{{{