mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-08-08 14:56:05 +00:00
6 lines
290 B
SQL
6 lines
290 B
SQL
-- Some sample data to prime the database...
|
|
-- base-data.sql should be processed before this
|
|
|
|
INSERT INTO usr ( user_no, active, email_ok, updated, username, password, fullname, email )
|
|
VALUES( 10, TRUE, current_date, current_date, 'user1', '**user1', 'User 1', 'user1@example.net' );
|