You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by an...@apache.org on 2004/03/07 22:44:42 UTC

cvs commit: cocoon-2.1/src/blocks/databases/conf cocoondb.script

antonio     2004/03/07 13:44:42

  Modified:    src/blocks/databases/conf cocoondb.script
  Log:
  Fixing license comment.
  
  Revision  Changes    Path
  1.4       +14 -15    cocoon-2.1/src/blocks/databases/conf/cocoondb.script
  
  Index: cocoondb.script
  ===================================================================
  RCS file: /home/cvs//cocoon-2.1/src/blocks/databases/conf/cocoondb.script,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- cocoondb.script	6 Mar 2004 06:16:54 -0000	1.3
  +++ cocoondb.script	7 Mar 2004 21:44:42 -0000	1.4
  @@ -1,19 +1,18 @@
  -CREATE TABLE DEPARTMENT(ID INTEGER NOT NULL,NAME VARCHAR NOT NULL,UNIQUE(ID))
  -
  -# Copyright 1999-2004 The Apache Software Foundation
  -#
  -# Licensed under the Apache License, Version 2.0 (the "License");
  -# you may not use this file except in compliance with the License.
  -# You may obtain a copy of the License at
  -#
  -#     http://www.apache.org/licenses/LICENSE-2.0
  -#
  -# Unless required by applicable law or agreed to in writing, software
  -# distributed under the License is distributed on an "AS IS" BASIS,
  -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  -# See the License for the specific language governing permissions and
  -# limitations under the License.
  +-- Copyright 1999-2004 The Apache Software Foundation
  +--
  +-- Licensed under the Apache License, Version 2.0 (the "License");
  +-- you may not use this file except in compliance with the License.
  +-- You may obtain a copy of the License at
  +--
  +--     http://www.apache.org/licenses/LICENSE-2.0
  +--
  +-- Unless required by applicable law or agreed to in writing, software
  +-- distributed under the License is distributed on an "AS IS" BASIS,
  +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +-- See the License for the specific language governing permissions and
  +-- limitations under the License.
   
  +CREATE TABLE DEPARTMENT(ID INTEGER NOT NULL,NAME VARCHAR NOT NULL,UNIQUE(ID))
   CREATE TABLE EMPLOYEE(ID INTEGER NOT NULL,DEPARTMENT_ID INTEGER NOT NULL,NAME VARCHAR NOT NULL,UNIQUE(ID))
   CREATE TABLE USER(UID INTEGER IDENTITY PRIMARY KEY,NAME VARCHAR,FIRSTNAME VARCHAR,UNAME VARCHAR,UNIQUE(UNAME))
   CREATE TABLE GROUPS(GID INTEGER IDENTITY PRIMARY KEY,GNAME VARCHAR,UNIQUE(GNAME))