From: Steinar H. Gunderson Date: Tue, 14 May 2013 22:48:10 +0000 (+0200) Subject: aclentries have had a comment column for a long time; update the .sql. X-Git-Url: https://git.sesse.net/?p=itkacl;a=commitdiff_plain;h=b9014762b8051b457c68d8de11a08d64401026fa;hp=5a4ae0a37159e6af798d19800681f78872fb65a0 aclentries have had a comment column for a long time; update the .sql. --- diff --git a/itkacl-2.0/itkacl.sql b/itkacl-2.0/itkacl.sql index eb38f87..92b559c 100644 --- a/itkacl-2.0/itkacl.sql +++ b/itkacl-2.0/itkacl.sql @@ -12,6 +12,7 @@ CREATE TABLE aclentries ( entity_type VARCHAR(5) NOT NULL CHECK ( entity_type IN ('group', 'user') ), entity VARCHAR(64) NOT NULL, allow VARCHAR(5) NOT NULL CHECK ( allow IN ('grant', 'deny') ), + comment VARCHAR, UNIQUE ( object, entity_type, entity ) );