12 lines
278 B
MySQL
12 lines
278 B
MySQL
|
begin;
|
||
|
|
||
|
set search_path to camper, auth, public;
|
||
|
|
||
|
alter sequence user_user_id_seq restart with 42;
|
||
|
insert into auth."user" (email, name, password, role)
|
||
|
values ('demo@numerus', 'Demo User', 'demo', 'employee')
|
||
|
, ('admin@numerus', 'Demo Admin', 'admin', 'admin')
|
||
|
;
|
||
|
|
||
|
commit;
|