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=refs%2Fremotes%2Forigin%2Fmaster 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 ) );