adding an example to the keychain_acls spec

This commit is contained in:
Mike Arpaia 2015-06-22 09:38:17 -07:00
parent 2b9bbb6bd4
commit 9d783fee00

View File

@ -8,3 +8,6 @@ schema([
Column("label", TEXT, "An optional label tag that may be included with the keychain entry"), Column("label", TEXT, "An optional label tag that may be included with the keychain entry"),
]) ])
implementation("keychain_acl@genKeychainACLApps") implementation("keychain_acl@genKeychainACLApps")
examples([
"select label, description, authorizations, path, count(path) as c from keychain_acls where label != '' and path != '' group by label having c > 1;",
])