Changes between Version 5 and Version 6 of ImportantUseCase2
- Timestamp:
- 03/10/22 17:09:01 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase2
v5 v6 15 15 {{{#!sql 16 16 INSERT INTO project.users (email,username,password,full_name,created_at,profile_picture,type) 17 VALUES (' test_organizer_1@mail.com','test_organizer_1','pswrd','Test Organizator 1', now(),'artist.jpg','ORGANIZER'::project."user_type");17 VALUES ('v_organizer@mail.com','v_organizer','pswrd','V Organizer, now(),'artist.jpg','ORGANIZER'::project."user_type"); 18 18 }}} 19 19 … … 27 27 WHERE id = ( 28 28 select u.id from users u 29 where u.email = ' test_organizer_1@mail.com'29 where u.email = 'v_organizer@mail.com' 30 30 ); 31 31 … … 34 34 VALUES (( 35 35 select u.id from users u 36 where u.email = ' test_organizer_1@mail.com'36 where u.email = 'v_organizer@mail.com' 37 37 ),'Skopje','North Macedonia'); 38 38 }}}