Changes between Version 7 and Version 8 of ImportantUseCase1


Ignore:
Timestamp:
03/10/22 17:08:17 (2 years ago)
Author:
191151
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase1

    v7 v8  
    1515
    1616{{{#!sql
    17 INSERT INTO project.users (email,username,password,full_name,created_at,profile_picture,type)
    18         VALUES ('test_artist@mail.com','test_artist_1','password','Test Artist', now(),'artist.jpg','ARTIST'::project."user_type");
     17INSERT INTO project.users (email,username,password,name,created_at,profile_picture,type)
     18        VALUES ('v_artist@mail.com','v_artist','password','V Artist', now(),'artist.jpg','ARTIST'::project."user_type");
    1919}}}
    2020
     
    2828        where user_id = (
    2929                select u.id from users u
    30                 where u.email = 'test_artist@mail.com'
     30                where u.email = 'v_artist@mail.com'
    3131        );
    3232
     
    3434        VALUES ((
    3535                select u.id from users u
    36                 where u.email = 'test_artist@mail.com'
     36                where u.email = 'v_artist@mail.com'
    3737        ),'2000-01-01','Skopje','North Macedonia',1);
    3838}}}
     
    4747        WHERE user_id = (
    4848                select u.id from users u
    49                 where u.email = 'test_artist@mail.com'
     49                where u.email = 'v_artist@mail.com'
    5050        );
    5151}}}