Skip to content

Commit a5cac46

Browse files
committed
Update db scripts
1 parent 504fe4e commit a5cac46

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
22

3-
insert into taskuser (UUID, FirstName, LastName, email, password)
4-
values (uuid_generate_v4(), 'John', 'Doe', 'john@domain.com', 'ololo');
3+
insert into taskuser (UUID, CreationDate, FirstName, LastName, email, password)
4+
values (uuid_generate_v4(), current_timestamp, 'John', 'Doe', 'john@domain.com', 'ololo');
55

6-
insert into taskuser (UUID, FirstName, LastName, email, password)
7-
values (uuid_generate_v4(), 'Jane', 'Doe', 'jane@domain.com', 'ololo')
6+
insert into taskuser (UUID, CreationDate, FirstName, LastName, email, password)
7+
values (uuid_generate_v4(), current_timestamp, 'Jane', 'Doe', 'jane@domain.com', 'ololo')

0 commit comments

Comments
 (0)