Update Script ccm-cms zu r1081, Korrektur einer versehentlich gelöschten Zeile im Build Script.
git-svn-id: https://svn.libreccm.org/ccm/trunk@1102 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
a1b70f3757
commit
de59739566
|
|
@ -2,7 +2,7 @@
|
|||
<ccm:application xmlns:ccm="http://ccm.redhat.com/ccm-project"
|
||||
name="ccm-cms"
|
||||
prettyName="Red Hat CCM Content Management System"
|
||||
version="6.6.2"
|
||||
version="6.6.3"
|
||||
release="1"
|
||||
webapp="ROOT">
|
||||
<ccm:dependencies>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
--
|
||||
-- Copyright (C) 2011 Peter Boy All Rights Reserved.
|
||||
--
|
||||
-- This library is free software; you can redistribute it and/or
|
||||
-- modify it under the terms of the GNU Lesser General Public License
|
||||
-- as published by the Free Software Foundation; either version 2.1 of
|
||||
-- the License, or (at your option) any later version.
|
||||
--
|
||||
-- This library is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
-- Lesser General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU Lesser General Public
|
||||
-- License along with this library; if not, write to the Free Software
|
||||
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
--
|
||||
-- $Id: upd_table_persons.sql pboy $
|
||||
|
||||
-- This update is only applicable for the internal development tree at
|
||||
-- University of Bremen ! Don't use for the APLAWS main trunk on
|
||||
-- fedorahosted!
|
||||
|
||||
ALTER TABLE cms_persons
|
||||
ADD COLUMN dabinId INTEGER;
|
||||
|
||||
ALTER TABLE cms_persons
|
||||
ADD COLUMN aliasId INTEGER REFERNCES cms_persons;
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
--
|
||||
-- Copyright (C) 2011 Peter Boy All Rights Reserved.
|
||||
--
|
||||
-- This library is free software; you can redistribute it and/or
|
||||
-- modify it under the terms of the GNU Lesser General Public License
|
||||
-- as published by the Free Software Foundation; either version 2.1 of
|
||||
-- the License, or (at your option) any later version.
|
||||
--
|
||||
-- This library is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
-- Lesser General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU Lesser General Public
|
||||
-- License along with this library; if not, write to the Free Software
|
||||
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
--
|
||||
-- $Id: oracle-se-6.6.2-6.6.3.sql 2011-09-06 15:10:39Z pboy $
|
||||
|
||||
-- This update is only applicable for the internal development tree at
|
||||
-- University of Bremen ! Don't use for the APLAWS main trunk on
|
||||
-- fedorahosted!
|
||||
|
||||
PROMPT Red Hat Enterprise CMS 6.6.2 -> 6.6.3 Upgrade Script (Oracle)
|
||||
|
||||
@@ ../default/upgrade/6.6.2-6.6.3/upd_table_persons.sql
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
--
|
||||
-- Copyright (C) 2011 Peter Boy All Rights Reserved.
|
||||
--
|
||||
-- This library is free software; you can redistribute it and/or
|
||||
-- modify it under the terms of the GNU Lesser General Public License
|
||||
-- as published by the Free Software Foundation; either version 2.1 of
|
||||
-- the License, or (at your option) any later version.
|
||||
--
|
||||
-- This library is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
-- Lesser General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU Lesser General Public
|
||||
-- License along with this library; if not, write to the Free Software
|
||||
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
--
|
||||
-- $DateTime: 2011/09/06 23:15:09 $
|
||||
|
||||
-- This update is only applicable for the internal development tree at
|
||||
-- University of Bremen ! Don't use for the APLAWS main trunk on
|
||||
-- fedorahosted!
|
||||
|
||||
\echo Red Hat Enterprise CMS 6.6.2 -> 6.6.3 Upgrade Script (PostgreSQL)
|
||||
|
||||
begin;
|
||||
|
||||
\i ../default/upgrade/6.6.2-6.6.3/upd_table_persons.sql
|
||||
|
||||
commit;
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
<upgrade>
|
||||
|
||||
<version from="6.0.0" to="6.0.1">
|
||||
<script sql="ccm-cms/upgrade/::database::-6.0.0-6.0.1.sql"/>
|
||||
</version>
|
||||
|
|
@ -44,4 +43,8 @@
|
|||
<script class="com.arsdigita.cms.upgrade.AddNewStyleApplicationEntries"/>
|
||||
<script sql="ccm-cms/upgrade/::database::-6.6.1-6.6.2.sql"/>
|
||||
</version>
|
||||
<version from="6.6.2" to="6.6.3">
|
||||
<!-- This update is only applicable for the development tree at UHB! -->
|
||||
<script sql="ccm-cms/upgrade/::database::-6.6.2-6.6.3.sql"/>
|
||||
</version>
|
||||
</upgrade>
|
||||
|
|
|
|||
|
|
@ -104,6 +104,7 @@
|
|||
<arg value="${ccm.tools.xsl.dir}/listapps.xsl"/>
|
||||
<arg value="-TEXT"/>
|
||||
</java>
|
||||
<loadfile property="applications" srcFile=".tmp.applications.list" />
|
||||
<delete file=".tmp.applications.list"/>
|
||||
<tstamp>
|
||||
<format pattern="yyyymmddhhmmss" property="timestamp" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue