Changes between Version 1 and Version 2 of ImportantUseCase1


Ignore:
Timestamp:
01/21/22 21:05:56 (2 years ago)
Author:
191151
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase1

    v1 v2  
    1515
    1616{{{
    17 insert into
     17INSERT 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");
    1819}}}
    1920
     
    2324
    2425{{{
    25 insert into
     26UPDATE project.users
     27        SET email_verified_at = now(),updated_at = now()
     28        WHERE id=6;
     29
     30INSERT INTO project.artists (user_id,birth_date,city,country,artist_type_id)
     31        VALUES (6,'2000-01-01','Skopje','North Macedonia',1);
    2632}}}
    2733
     
    3137
    3238{{{
    33 insert into
     39UPDATE project.artists
     40        SET admin_verified_at = now()
     41        WHERE user_id = 6;
    3442}}}
    3543