Changes between Version 2 and Version 3 of WriterRegistration


Ignore:
Timestamp:
08/24/26 15:55:42 (13 days ago)
Author:
211099
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WriterRegistration

    v2 v3  
    1313**4.** The system inserts a new record into the USERS table.
    1414{{{#!sql
    15 INSERT INTO USERS (username, email, name, surname, password)
     15INSERT INTO USERS (username, email, user_name, surname, password)
    1616VALUES ('maja_newwriter', 'maja.pen@chapterx.com', 'Maja', 'Georgieva', '$2a$10$hashedpassword008');
    1717}}}
     
    2020
    2121{{{#!sql
    22 INSERT INTO WRITER (user_id)
    23 VALUES (8);
     22INSERT INTO WRITER (user_id, bio)
     23VALUES (8, 'New voice in young adult fiction. Learning and growing with every chapter.');
    2424}}}
    2525