42
43
44
45
46
47
48
49
50
51
|
-- if the credential matches, access will be denied, even if
-- non-blacklisted credentials match. most useful with
-- uid = null, kind = trust, cidr = (untrusted IP range)
valperiod timestamp default now(),
-- cookies bearing timestamps earlier than this point in time
-- will be considered invalid and will not grant access
unique(name,kind,cred)
);
|
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
-- if the credential matches, access will be denied, even if
-- non-blacklisted credentials match. most useful with
-- uid = null, kind = trust, cidr = (untrusted IP range)
valperiod timestamp default now(),
-- cookies bearing timestamps earlier than this point in time
-- will be considered invalid and will not grant access
comment text,
-- a field the user can use to identify the specific credential,
-- in order to aid credential management
unique(name,kind,cred)
);
|