[Pkg-owncloud-commits] [php-sabredav] 20/28: Missed a few

David Prévot taffit at moszumanska.debian.org
Sun Mar 13 17:59:09 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository php-sabredav.

commit 1e9d1a88ef641d0bfbfb9615e43de7c3a03c8f84
Author: Evert Pot <me at evertpot.com>
Date:   Sat Mar 12 19:11:51 2016 -0500

    Missed a few
---
 examples/sql/sqlite.calendars.sql | 2 +-
 examples/sql/sqlite.users.sql     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/sql/sqlite.calendars.sql b/examples/sql/sqlite.calendars.sql
index 87f4779..a865403 100644
--- a/examples/sql/sqlite.calendars.sql
+++ b/examples/sql/sqlite.calendars.sql
@@ -37,7 +37,7 @@ CREATE TABLE calendarchanges (
 CREATE INDEX calendarid_synctoken ON calendarchanges (calendarid, synctoken);
 
 CREATE TABLE calendarsubscriptions (
-    id integer primary key asc,
+    id integer primary key asc NOT NULL,
     uri text NOT NULL,
     principaluri text NOT NULL,
     source text NOT NULL,
diff --git a/examples/sql/sqlite.users.sql b/examples/sql/sqlite.users.sql
index 7337f18..5597b05 100644
--- a/examples/sql/sqlite.users.sql
+++ b/examples/sql/sqlite.users.sql
@@ -1,5 +1,5 @@
 CREATE TABLE users (
-	id integer primary key asc,
+	id integer primary key asc NOT NULL,
 	username TEXT NOT NULL,
 	digesta1 TEXT NOT NULL,
 	UNIQUE(username)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-php/php-sabredav.git



More information about the Pkg-owncloud-commits mailing list