Changes between Version 3 and Version 4 of RegularUserRegistration
- Timestamp:
- 08/24/26 16:04:29 (13 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RegularUserRegistration
v3 v4 13 13 **4.** The system inserts a new record into the USERS table. 14 14 {{{#!sql 15 INSERT INTO USERS (username, email, name, surname, password)15 INSERT INTO USERS (username, email, user_name, surname, password) 16 16 VALUES ('sara_reader', 'sara.books@gmail.com', 'Sara', 'Petkovska', '$2a$10$hashedpassword004'); 17 17 }}} … … 20 20 21 21 {{{#!sql 22 INSERT INTO REGULAR_USER (user_id )23 VALUES (4 );22 INSERT INTO REGULAR_USER (user_id, joined_at) 23 VALUES (4, CURRENT_TIMESTAMP); 24 24 }}} 25 25
