我使用Postgres DB进行迁移我使用了Liquibase。 我有一个ORDERS表,其中包含以下列:
ID | DATE | NAME | CREATOR | ...
我需要添加一个新列,该列将保留上次修改订单的用户 - 此列应该是不可为空的,并且应该具有默认值,即CREATOR。 对于新订单,我可以解决业务逻辑的默认值部分,但事情是我已经有现有订单,我需要在创建新列时设置默认值。 现在,我知道我可以设置一个硬编码的default value in Liquibase - 但是有一种方法可以根据该表的其他一些列(对于每个实体)添加默认值。
答案 0 :(得分:18)
由于没有人在这里回答,我发布了我处理它的方式:
<changeSet id="Add MODIFY_USER_ID to ORDERS" author="Noam">
<addColumn tableName="ORDERS">
<column name="MODIFY_USER_ID" type="BIGINT">
<constraints foreignKeyName="ORDERS_MODIFY_FK" referencedTableName="USERS" referencedColumnNames="ID"/>
</column>
</addColumn>
</changeSet>
<changeSet id="update the new MODIFY_USER_ID column to get the CREATOR" author="Noam">
<sql>update ORDERS set MODIFY_USER_ID = CREATOR</sql>
</changeSet>
<changeSet id="Add not nullable constraint on MODIFY_USER_ID column" author="Noam">
<addNotNullConstraint tableName="ORDERS" columnName="MODIFY_USER_ID" columnDataType="BIGINT"/>
</changeSet>
我已在三个不同的更改集中完成此操作,如文档所述
答案 1 :(得分:2)
您可以使用defaultValueComputed
属性,该属性采用过程或函数的名称。您还必须创建一个创建过程的变更集。
这可能看起来像这样 :
<changeSet author="steve" id="createProcedureForDefaultValue">
<createProcedure procedureName="myCoolProc">
CREATE OR REPLACE PROCEDURE myCoolProc IS
BEGIN
-- actual logic here
END;
</createProcedure>
</changeSet>
<changeSet author="steve" id="addDefaultValueColumn">
<addColumn tableName="ORDERS">
<column name="LAST_MODIFIED_BY" type="VARCHAR" defaultValueComputed="myCoolProc">
<constraints nullable="false"/>
</column>
</addColumn>
</changeSet>
或者,您可以使用<sql>
标记执行此操作。