gpt4 book ai didi

mysql - Liquibase 添加默认值

转载 作者:行者123 更新时间:2023-11-29 02:17:55 25 4
gpt4 key购买 nike

我创建了一个名为 person 的表,并使用 liquibase 变更集添加了一列“phone_number”。但是现在我想为它添加一个默认值。但它没有用,到目前为止我试过这个:

<addDefaultValue columnName="phone_number"
defaultValue="+923331234567"
tableName="person"/>

<changeSet author="haseeb" id="20160413123500">
<update tableName="person">
<column name="phone_number" type="varchar(255)" defaultValue="+923331234567"/>
</update>
</changeSet>

<changeSet author="haseeb" id="20160413123501">
<update tableName="person">
<column name="phone_number" type="varchar(255)" value="+923331234567"/>
</update>

谁能指出我哪里做错了,添加默认值是否会为之前添加的行添加值?

最佳答案

试试这个

<addDefaultValue columnName="phone_number"
defaultValue="+923331234567"
tableName="person" columnDataType="varchar(255)"/>

关于mysql - Liquibase 添加默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36588317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com