From a28cc0462daf47661f2921739b4df31f6e8f164c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 4 Mar 2017 20:10:24 -0500 Subject: [PATCH 1/1] Fix the new AgenDAV fixtures SQL. --- test/sql/agendav-fixtures.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/sql/agendav-fixtures.sql b/test/sql/agendav-fixtures.sql index 49bed6a..5af6cdb 100644 --- a/test/sql/agendav-fixtures.sql +++ b/test/sql/agendav-fixtures.sql @@ -1,17 +1,17 @@ /* Add an AgenDAV record for one user only. */ INSERT INTO prefs (username, options) VALUES ('adam@example.net', 'herp'); -INSERT INTO shares (owner, calendar, with, options, rw) +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); + false); /* Just kidding, here's another one! */ INSERT INTO prefs (username, options) VALUES ('booger@example.com', 'herp'); -INSERT INTO shares (owner, calendar, with, options, rw) +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); + true); -- 2.43.2