Changes between Version 3 and Version 4 of RegularUserRegistration


Ignore:
Timestamp:
08/24/26 16:04:29 (13 days ago)
Author:
211099
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RegularUserRegistration

    v3 v4  
    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 ('sara_reader', 'sara.books@gmail.com', 'Sara', 'Petkovska', '$2a$10$hashedpassword004');
    1717}}}
     
    2020
    2121{{{#!sql
    22 INSERT INTO REGULAR_USER (user_id)
    23 VALUES (4);
     22INSERT INTO REGULAR_USER (user_id, joined_at)
     23VALUES (4, CURRENT_TIMESTAMP);
    2424}}}
    2525