]> gitweb.michael.orlitzky.com - mailshears.git/commitdiff
Update AgenDAV fixtures for the v2.1.0 schema.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 5 Mar 2017 00:30:08 +0000 (19:30 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 5 Mar 2017 00:30:08 +0000 (19:30 -0500)
test/sql/agendav-fixtures.sql

index 780e062d1c0cb78c7a420b6ba3a6d768e980c63e..49bed6ac6a584cda93fd5ab2d636948b8c09a21d 100644 (file)
@@ -1,9 +1,17 @@
 /* Add an AgenDAV record for one user only. */
 INSERT INTO prefs (username, options) VALUES ('adam@example.net', 'herp');
 /* Add an AgenDAV record for one user only. */
 INSERT INTO prefs (username, options) VALUES ('adam@example.net', 'herp');
-INSERT INTO shared (user_from, user_which, calendar)
-  VALUES ('adam@example.net', 'beth@example.net', 'derp');
+INSERT INTO shares (owner, calendar, with, options, rw)
+  VALUES ('/caldav.php/adam%40example.net/',
+          '/caldav.php/adam%40example.net/calendar-default',
+          '/beth%40example.net/',
+         'a:0:{}',
+         0);
 
 /* Just kidding, here's another one! */
 INSERT INTO prefs (username, options) VALUES ('booger@example.com', 'herp');
 
 /* Just kidding, here's another one! */
 INSERT INTO prefs (username, options) VALUES ('booger@example.com', 'herp');
-INSERT INTO shared (user_from, user_which, calendar)
-  VALUES ('booger@example.com', 'carol@example.net', 'derp');
+INSERT INTO shares (owner, calendar, with, options, rw)
+  VALUES ('/caldav.php/booger%40example.com/',
+          '/carol%40example.net/',
+         '/caldav.php/booger%40example.com/calendar-default',
+         'a:0:{}',
+         1);