mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-28 00:43:37 +00:00
7 lines
289 B
SQL
7 lines
289 B
SQL
-- Some sample data to prime the database...
|
|
|
|
INSERT INTO usr ( user_no, active, email_ok, updated, username, password, fullname, email )
|
|
VALUES( 1, TRUE, current_date, current_date, 'andrew', '**x', 'Andrew McMillan', 'andrew@catalyst.net.nz' );
|
|
|
|
SELECT setval('usr_user_no_seq', 1);
|