11 lines
230 B
MySQL
11 lines
230 B
MySQL
|
begin;
|
||
|
|
||
|
set search_path to auth, numerus, public;
|
||
|
|
||
|
insert into auth."user" (email, name, password, role)
|
||
|
values ('demo@numerus', 'Demo User', 'demo', 'invoicer')
|
||
|
, ('admin@numerus', 'Demo Admin', 'admin', 'admin')
|
||
|
;
|
||
|
|
||
|
commit;
|