Changes between Initial Version and Version 1 of NewUserRegistration
- Timestamp:
- 01/10/26 18:05:26 (7 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewUserRegistration
v1 v1 1 == New User Registration 2 3 ==== Actors: **Guest User** 4 5 **1.** A guest user selects Register and chooses to register as a regular user”. 6 7 **2.** The user enters personal details. 8 9 **3.** The system creates the user with role USER. 10 11 12 {{{#!sql 13 INSERT INTO user_entity (first_name, last_name, email, password, role) 14 VALUES ('John', 'Doe', 'john.doe@email.com', 'hashed_password', 'USER'); 15 16 INSERT INTO users (id) 17 VALUES (currval('user_entity_id_seq')); 18 19 20 }}}
