21 lines
414 B
MySQL
21 lines
414 B
MySQL
|
|
INSERT INTO "server-manager".tab_users (
|
||
|
|
id,
|
||
|
|
username,
|
||
|
|
email,
|
||
|
|
password,
|
||
|
|
first_name,
|
||
|
|
last_name,
|
||
|
|
created_at,
|
||
|
|
updated_at
|
||
|
|
) VALUES (
|
||
|
|
'00000000-0000-0000-0000-000000000001',
|
||
|
|
'default',
|
||
|
|
'default@hittelco.com',
|
||
|
|
'$2b$10$4hvMSZp/AC0k9HXqxtdO2e0KUQReRgcnJEcY5gWYTPiDMgu2D4bSK',
|
||
|
|
'Default',
|
||
|
|
'User',
|
||
|
|
CURRENT_TIMESTAMP,
|
||
|
|
CURRENT_TIMESTAMP
|
||
|
|
)
|
||
|
|
ON CONFLICT DO NOTHING;
|