]> gitweb.michael.orlitzky.com - mailshears.git/blob - test/sql/agendav-fixtures.sql
Fix the new AgenDAV fixtures SQL.
[mailshears.git] / test / sql / agendav-fixtures.sql
1 /* Add an AgenDAV record for one user only. */
2 INSERT INTO prefs (username, options) VALUES ('adam@example.net', 'herp');
3 INSERT INTO shares (owner, calendar, "with", options, rw)
4 VALUES ('/caldav.php/adam%40example.net/',
5 '/caldav.php/adam%40example.net/calendar-default',
6 '/beth%40example.net/',
7 'a:0:{}',
8 false);
9
10 /* Just kidding, here's another one! */
11 INSERT INTO prefs (username, options) VALUES ('booger@example.com', 'herp');
12 INSERT INTO shares (owner, calendar, "with", options, rw)
13 VALUES ('/caldav.php/booger%40example.com/',
14 '/carol%40example.net/',
15 '/caldav.php/booger%40example.com/calendar-default',
16 'a:0:{}',
17 true);