From ca91b9abc5be425c2b7c233fcfe24b914fd67dfa Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Sat, 22 May 2010 23:19:05 +0100 Subject: [PATCH] Corrected section layout in DB schema appendix of ref manual. --- .../manual/src/docbook/appendix-db-schema.xml | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) 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')) + +
-