Changes between Version 2 and Version 3 of WriterRegistration
- Timestamp:
- 08/24/26 15:55:42 (13 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WriterRegistration
v2 v3 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 ('maja_newwriter', 'maja.pen@chapterx.com', 'Maja', 'Georgieva', '$2a$10$hashedpassword008'); 17 17 }}} … … 20 20 21 21 {{{#!sql 22 INSERT INTO WRITER (user_id )23 VALUES (8 );22 INSERT INTO WRITER (user_id, bio) 23 VALUES (8, 'New voice in young adult fiction. Learning and growing with every chapter.'); 24 24 }}} 25 25
