X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=test%2Fsql%2Fdavical-fixtures.sql;h=8b1f62c9ded5f37a8098888975484bba4869825d;hp=5abf7a67b2dc5b83b6ea3e45dc4ecf713a1f43d8;hb=342327326fc5203b34435a7291f5528f214c1717;hpb=f10f16ca95c5e9777c0326ef47f9183dea321cbf diff --git a/test/sql/davical-fixtures.sql b/test/sql/davical-fixtures.sql index 5abf7a6..8b1f62c 100644 --- a/test/sql/davical-fixtures.sql +++ b/test/sql/davical-fixtures.sql @@ -14,3 +14,10 @@ INSERT INTO principal_type (principal_type_id, principal_type_desc) /* ...and assign it to the new user. */ INSERT INTO principal (type_id, user_no, displayname, default_privileges) VALUES (1, 17, 'Alice', '000000000001111000000000'); + +/* Now here's another user. */ +INSERT INTO usr (user_no, username) VALUES (18, 'booger@example.com'); +INSERT INTO usr_setting (user_no, setting_name, setting_value) + VALUES (18, 'dumb setting', 'its dumb value'); +INSERT INTO principal (type_id, user_no, displayname, default_privileges) + VALUES (1, 18, 'Booger', '000000000001111000000000');