> I found the problem: the permission table now has 6 columns. > > > old: > > create table permissions(object blob, subject blob, action blob, > inheritable int, negative int); > > new: > > create table permissions(object blob, revisionnumber varchar(20), > subject blob, action blob, inheritable int, negative int); Yes, sorry for the non backward compatible change. It should be easy to transfer old data, since the new revisionnumber column should have a null value in most cases (indicating that the ACL applies to all the versions of the resource). Remy
