From 380daacd153f30af5fff649fe96c692db9fab5b6 Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Sun, 12 Nov 2006 23:03:16 +0000 Subject: [PATCH] SEC-383: Correct missing comma in acl_permission create statement. --- doc/xdocs/dbinit.txt | 2 +- src/site/resources/dbinit.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/xdocs/dbinit.txt b/doc/xdocs/dbinit.txt index 9845bd583e..0746d875af 100644 --- a/doc/xdocs/dbinit.txt +++ b/doc/xdocs/dbinit.txt @@ -46,7 +46,7 @@ CREATE TABLE acl_object_identity ( ); CREATE TABLE acl_permission ( - id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY + id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY, acl_object_identity BIGINT NOT NULL, recipient VARCHAR_IGNORECASE(100) NOT NULL, mask INTEGER NOT NULL, diff --git a/src/site/resources/dbinit.txt b/src/site/resources/dbinit.txt index b747aa2765..0746d875af 100644 --- a/src/site/resources/dbinit.txt +++ b/src/site/resources/dbinit.txt @@ -1,4 +1,4 @@ ---- $Id: dbinit.txt 1245 2006-01-26 09:48:54Z benalex $ +--- $Id$ --- Sample Hypersonic SQL compatible schema and data --- @@ -46,7 +46,7 @@ CREATE TABLE acl_object_identity ( ); CREATE TABLE acl_permission ( - id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY + id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY, acl_object_identity BIGINT NOT NULL, recipient VARCHAR_IGNORECASE(100) NOT NULL, mask INTEGER NOT NULL,