Go-Back-Skeleton/database/migrations/2_bootstrap_users.up.sql
2024-08-31 19:01:33 +02:00

8 lines
249 B
SQL

INSERT INTO accounts (id, email, name, active, roles)
VALUES (DEFAULT, 'admin@example.com', 'Admin Example', true, '{admin}');
--bun:split
INSERT INTO accounts (id, email, name, active)
VALUES (DEFAULT, 'user@example.com', 'User Example', true);