Changes between Version 15 and Version 16 of phase0


Ignore:
Timestamp:
03/07/24 00:02:03 (7 months ago)
Author:
201166
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • phase0

    v15 v16  
    141141INSERT INTO users (first_name, last_name, phone_number, email, password, role)\\
    142142SELECT 'First' !|| (i) + 1,\\
    143        'Last' || (i) + 1,\\
     143       'Last' !|| (i) + 1,\\
    144144       '123-456-7890',\\
    145        'user' || (i) + 1 || '@example.com',\\
    146        'password' || (i) + 1,\\
     145       'user' !|| (i) + 1 || '@example.com',\\
     146       'password' !|| (i) + 1,\\
    147147       CASE\\
    148148           WHEN i <= 2 THEN 'ADMIN'\\