Changes between Version 1 and Version 2 of ImportantUseCase1
- Timestamp:
- 01/21/22 21:05:56 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase1
v1 v2 15 15 16 16 {{{ 17 insert into 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"); 18 19 }}} 19 20 … … 23 24 24 25 {{{ 25 insert into 26 UPDATE project.users 27 SET email_verified_at = now(),updated_at = now() 28 WHERE id=6; 29 30 INSERT INTO project.artists (user_id,birth_date,city,country,artist_type_id) 31 VALUES (6,'2000-01-01','Skopje','North Macedonia',1); 26 32 }}} 27 33 … … 31 37 32 38 {{{ 33 insert into 39 UPDATE project.artists 40 SET admin_verified_at = now() 41 WHERE user_id = 6; 34 42 }}} 35 43