Fix problems in Liquibase changes in MySQL
FEA: ItEr76S17MoneyCostMonitoringSystem
This commit is contained in:
parent
979ac144b1
commit
92bef8a27d
1 changed files with 4 additions and 2 deletions
|
|
@ -74,7 +74,8 @@
|
|||
<column name="budget" type="DECIMAL(19,2)" />
|
||||
</addColumn>
|
||||
<addNotNullConstraint tableName="order_line"
|
||||
columnName="budget" defaultNullValue="0" />
|
||||
columnName="budget" defaultNullValue="0"
|
||||
columnDataType="DECIMAL(19,2)" />
|
||||
<addDefaultValue tableName="order_line"
|
||||
columnName="budget" defaultValueNumeric="0" />
|
||||
</changeSet>
|
||||
|
|
@ -85,7 +86,8 @@
|
|||
<column name="budget" type="DECIMAL(19,2)" />
|
||||
</addColumn>
|
||||
<addNotNullConstraint tableName="order_line_template"
|
||||
columnName="budget" defaultNullValue="0" />
|
||||
columnName="budget" defaultNullValue="0"
|
||||
columnDataType="DECIMAL(19,2)" />
|
||||
<addDefaultValue tableName="order_line_template"
|
||||
columnName="budget" defaultValueNumeric="0" />
|
||||
</changeSet>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue