6 lines
385 B
SQL
6 lines
385 B
SQL
INSERT INTO public.profiles (id, firstname, lastname, email, isactive, createdat, updatedat)
|
|
VALUES
|
|
('admin-default-profile', 'Admin', 'General', 'admin@admin.fr', true, '2025-09-23 13:09:47.804', '2025-09-23 13:09:47.804'),
|
|
('cmhab2j3x003g47v77xhnm1ff', 'Elodie', 'Souriau', 'elodie@gg.fr', true, '2025-10-28 08:29:25.437', '2025-10-28 08:29:25.437')
|
|
ON CONFLICT (id) DO NOTHING;
|