22 lines
825 B
XML
22 lines
825 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE data SYSTEM "../../../lib/pkp/dtd/xmlData.dtd">
|
|
|
|
<!--
|
|
* dbscripts/xml/upgrade/3.2.0_preupdate_versioning_articleGalleySettings.xml
|
|
*
|
|
* Copyright (c) 2013-2021 Simon Fraser University
|
|
* Copyright (c) 2003-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* Copy submission data to temporary tables so it can be updated
|
|
* after the publication table modifications are made.
|
|
*
|
|
-->
|
|
<data>
|
|
<sql>
|
|
<query>UPDATE article_galley_settings SET locale='nb_NO' WHERE locale='no_NO'</query>
|
|
<query>CREATE TABLE submission_galley_settings AS SELECT * FROM article_galley_settings WHERE setting_name <> 'excludeDoi' AND setting_name <> 'excludeURN'</query>
|
|
<drop table="article_galley_settings"/>
|
|
</sql>
|
|
</data>
|