projects
/
itkacl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a4ae0a
)
aclentries have had a comment column for a long time; update the .sql.
origin/HEAD
origin/master
author
Steinar H. Gunderson
<sesse@samfundet.no>
Tue, 14 May 2013 22:48:10 +0000
(
00:48
+0200)
committer
Steinar H. Gunderson
<sesse@samfundet.no>
Tue, 14 May 2013 22:48:10 +0000
(
00:48
+0200)
itkacl-2.0/itkacl.sql
patch
|
blob
|
history
diff --git
a/itkacl-2.0/itkacl.sql
b/itkacl-2.0/itkacl.sql
index eb38f8750b573d32fbb94885b24b2b658593b42c..92b559cf86e99caa88f886b56d074b87a1ecc30c 100644
(file)
--- 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 )
);