Skip to content

Commit

Permalink
fix(jobEngine): Changed 'jbtc_job_status.obj' type to longblob to sup…
Browse files Browse the repository at this point in the history
…port changes made in eclipse#3828

Signed-off-by: Alberto Codutti <[email protected]>
  • Loading branch information
Coduz committed Aug 30, 2023
1 parent d72ae04 commit ca46867
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2023, 2022 Eurotech and/or its affiliates and others
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0
which is available at https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
Eurotech - initial API and implementation
-->
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd">

<include relativeToChangelogFile="true" file="./job_engine_jbatch-job_status.xml"/>

</databaseChangeLog>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2023, 2022 Eurotech and/or its affiliates and others
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0
which is available at https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
Eurotech - initial API and implementation
-->
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd"
logicalFilePath="KapuaDB/changelog-job_engine_jbatch-2.0.0.xml">

<changeSet id="changelog-job_engine_jbatch-2.0.0-job_status_obj_longtext" author="eurotech">
<modifyDataType
tableName="jbtc_job_status"
columnName="obj"
newDataType="longblob"/>
</changeSet>

</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
<include relativeToChangelogFile="true" file="./1.1.0/changelog-job-engine-1.1.0.xml"/>
<include relativeToChangelogFile="true" file="./1.2.0/changelog-job-engine-1.2.0.xml"/>
<include relativeToChangelogFile="true" file="./1.5.0/changelog-job-engine-1.5.0.xml"/>
<include relativeToChangelogFile="true" file="./2.0.0/changelog-job-engine-2.0.0.xml"/>

</databaseChangeLog>

0 comments on commit ca46867

Please sign in to comment.