Changes between Version 3 and Version 4 of StoreRegistration


Ignore:
Timestamp:
01/09/26 19:54:42 (11 days ago)
Author:
235018
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StoreRegistration

    v3 v4  
    2525}}}
    2626
    27 **6.** The boss is assigned to work in the store via {{{works_in_store}}}.
     27**6.** The application creates a new store entry in {{{store}}}.
     28
     29{{{#!sql
     30INSERT INTO store (store_ID, name, date_of_founding, physical_address, store_email) VALUES
     31('001', 'HandCraft001', '2024-01-01', 'st.Main num.5, Skopje 1000, MK', 'store001@shop.com');
     32
     33}}}
     34
     35**7.** The boss is assigned to work in the store via {{{works_in_store}}}.
    2836
    2937{{{#!sql
     
    3240
    3341}}}
    34 
    35 
    36 **7.** The application creates a new store entry in {{{store}}}.
    37 
    38 {{{#!sql
    39 INSERT INTO store (store_ID, name, date_of_founding, physical_address, store_email) VALUES
    40 ('001', 'HandCraft001', '2024-01-01', 'st.Main num.5, Skopje 1000, MK', 'store001@shop.com');
    41 
    42 }}}