Changes between Version 1 and Version 2 of StoreRegistration
- Timestamp:
- 12/30/25 15:09:18 (14 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StoreRegistration
v1 v2 3 3 === Authors: **Registered Boss** 4 4 5 The user selects the option to register as a store owner.5 **1.** The user selects the option to register as a store owner. 6 6 7 The system displays a registration form for personal and store data.7 **2.** The system displays a registration form for personal and store data. 8 8 9 The user submits personal information.9 **3.** The user submits personal information. 10 10 11 The application inserts a new record into the {{{personal}}} table. 12 11 **4.** The application inserts a new record into the {{{personal}}} table. 13 12 14 13 {{{#!sql … … 19 18 }}} 20 19 21 The application registers the user as a boss in {{{boss}}}. 22 20 **5.** The application registers the user as a boss in {{{boss}}}. 23 21 24 22 {{{#!sql … … 28 26 }}} 29 27 30 The application creates a new store entry in {{{store}}}.28 **6.** The boss is assigned to work in the store via {{{works_in_store}}}. 31 29 30 {{{#!sql 31 INSERT INTO works_in_store (personal_ID, store_ID) 32 VALUES ('0010001', '001'); 33 34 }}} 35 36 37 **7.** The application creates a new store entry in {{{store}}}. 32 38 33 39 {{{#!sql
