project-margins-and-status: two columns(hours_margin and budget_margin) are added to the order-table

This commit is contained in:
miciele Ghiorghis 2013-06-19 16:25:24 +02:00 committed by Oscar Gonzalez Fernandez
parent 917cf6005f
commit 3dc79c01cb

View file

@ -381,4 +381,18 @@
onDelete="SET NULL"/>
</changeSet>
<changeSet id="add-new-column-hours-margin" author="miciele" >
<comment>Add new column hours_margin in table order_table</comment>
<addColumn tableName="order_table">
<column name="hours_margin" type="INTEGER" />
</addColumn>
</changeSet>
<changeSet id="add-new-column-budget-margin" author="miciele" >
<comment>Add new column budget_margin in table order_table</comment>
<addColumn tableName="order_table">
<column name="budget_margin" type="INTEGER" />
</addColumn>
</changeSet>
</databaseChangeLog>