5

liquibase 是否可以在执行时进行某种映射modifyDataType

考虑以下示例:

<changeSet id="1" author="me">
    <createTable tableName="person">
        <column name="id" type="int">
            <constraints primaryKey="true" nullable="false" />
        </column>
        <column name="firstName" type="varchar(100)"></column>
        <column name="lastName" type="varchar(100)"></column>
        <column name="marital_status" type="int">
            <constraints nullable="false" />
        </column>
    </createTable>
</changeSet>
<changeSet id="2" author="me">
    <modifyDataType tableName="person" columnName="type"
        newDataType="varchar(36)" />
</changeSet>

我希望在我的列“类型”中发生以下映射:

0->single
1->married
etc..

这可能与 liquibase 吗?我通过命令行使用它。

4

1 回答 1

5

我认为这不可能直接通过某种映射或重构来实现。

一种方法是使用sql并将其放入另一个变更集中,该变更集在更改数据类型之后立即运行:

<changeSet id="3" author="me">
    <sql>
        update person set martial_status = 'single' where martial_status = 0;
        update person set martial_status = 'married' where martial_status = 1;
    </sql>
</changeSet>

我只是把这个写下来作为一个想法。它未经测试。

仅当 id 为 2 的变更集成功运行时,您才可以添加执行此变更集的先决条件。

于 2013-03-20T09:41:33.930 回答