Nachtrag Revision 2078

git-svn-id: https://svn.libreccm.org/ccm/trunk@2079 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2013-02-25 13:24:52 +00:00
parent 5856cc0ce5
commit c806629e1e
3 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- Add journal symbol column
ALTER TABLE ct_journal ADD COLUMN symbol VARCHAR(128);

View File

@ -0,0 +1,3 @@
-- Add fields for year of first publication and language of the publication
ALTER TABLE ct_publications ADD COLUMN firstPublished INTEGER;
ALTER TABLE ct_publications ADD COLUMN lang VARCHAR(128);

View File

@ -0,0 +1,9 @@
\echo 'ScientificCMS Publications module 6.6.3 -> 6.6.4 Upgrade script (PostgreSQL)'
begin;
\i ../default/upgrade/6.6.3-6.6.4/add-publication-fields.sql
\i ../default/upgrade/6.6.3-6.6.4/add-journal-symbol.sql
end;