Changes between Version 7 and Version 8 of ImportantUseCase1
- Timestamp:
- 03/10/22 17:08:17 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase1
v7 v8 15 15 16 16 {{{#!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','TestArtist', now(),'artist.jpg','ARTIST'::project."user_type");17 INSERT 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"); 19 19 }}} 20 20 … … 28 28 where user_id = ( 29 29 select u.id from users u 30 where u.email = ' test_artist@mail.com'30 where u.email = 'v_artist@mail.com' 31 31 ); 32 32 … … 34 34 VALUES (( 35 35 select u.id from users u 36 where u.email = ' test_artist@mail.com'36 where u.email = 'v_artist@mail.com' 37 37 ),'2000-01-01','Skopje','North Macedonia',1); 38 38 }}} … … 47 47 WHERE user_id = ( 48 48 select u.id from users u 49 where u.email = ' test_artist@mail.com'49 where u.email = 'v_artist@mail.com' 50 50 ); 51 51 }}}