diff --git a/docs/manual/src/docbook/appendix-db-schema.xml b/docs/manual/src/docbook/appendix-db-schema.xml index be797c9057..901a55d1ba 100644 --- a/docs/manual/src/docbook/appendix-db-schema.xml +++ b/docs/manual/src/docbook/appendix-db-schema.xml @@ -131,11 +131,12 @@ create table acl_entry ( references acl_object_identity(id), constraint foreign_fk_5 foreign key(sid) references acl_sid(id) ); - -
- PostgreSQL - - create table acl_sid( + +
+
+ PostgreSQL + + create table acl_sid( id bigserial not null primary key, principal boolean not null, sid varchar(100) not null, @@ -172,20 +173,19 @@ create table acl_entry( references acl_object_identity(id), constraint foreign_fk_5 foreign key(sid) references acl_sid(id)); - You will have to set the classIdentityQuery and - sidIdentityQuery properties of - JdbcMutableAclService to the following values, - respectively: - - select currval(pg_get_serial_sequence('acl_class', - 'id')) - - - select currval(pg_get_serial_sequence('acl_sid', - 'id')) - - + You will have to set the classIdentityQuery and + sidIdentityQuery properties of + JdbcMutableAclService to the following values, + respectively: + + select currval(pg_get_serial_sequence('acl_class', + 'id')) + + + select currval(pg_get_serial_sequence('acl_sid', + 'id')) + +
-