asd
This commit is contained in:
parent
059115b109
commit
fddf212c6d
1 changed files with 24 additions and 0 deletions
24
apps/db/migrations/4_seed_test.up.sql
Normal file
24
apps/db/migrations/4_seed_test.up.sql
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
INSERT INTO
|
||||
PUBLIC.USERS (
|
||||
username,
|
||||
email,
|
||||
"isAdmin",
|
||||
PASSWORD,
|
||||
nome,
|
||||
cognome,
|
||||
"isVerified",
|
||||
salt,
|
||||
telefono
|
||||
)
|
||||
VALUES (
|
||||
'Francesco Infoalloggi'::TEXT,
|
||||
'commerciale@infoalloggi.it'::TEXT,
|
||||
TRUE::BOOLEAN,
|
||||
'changeme'::TEXT,
|
||||
'Francesco'::TEXT,
|
||||
'Infoalloggi'::TEXT,
|
||||
TRUE::BOOLEAN,
|
||||
'a'::TEXT,
|
||||
'+393407246729'::TEXT
|
||||
)
|
||||
ON CONFLICT (email) DO NOTHING;
|
||||
Loading…
Add table
Reference in a new issue