Skip to content

Commit

Permalink
Moved changeset that makes orders.start_date required to the start of…
Browse files Browse the repository at this point in the history
… the upgrade - TRUNK-4239
  • Loading branch information
wluyima committed Feb 28, 2014
1 parent d7794df commit a81faa1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions api/src/main/resources/liquibase-update-to-latest.xml
Expand Up @@ -6421,6 +6421,14 @@
</comment>
</changeSet>

<changeSet id="201402241054" author="Akshika">
<comment>Making orders.start_date not nullable</comment>
<ext:modifyColumn tableName="orders">
<column name="start_date" type="DATETIME"/>
<constraints nullable="false"/>
</ext:modifyColumn>
</changeSet>

<changeSet id="201311041510" author="wyclif">
<preConditions onFail="MARK_RAN">
<not><columnExists tableName="drug_order" columnName="as_needed" /></not>
Expand Down Expand Up @@ -7050,12 +7058,4 @@
<addForeignKeyConstraint constraintName="fk_orderer_provider" baseTableName="orders" baseColumnNames="orderer"
referencedTableName="provider" referencedColumnNames="provider_id" />
</changeSet>

<changeSet id="201402241054" author="Akshika">
<comment>Making orders.start_date not nullable</comment>
<ext:modifyColumn tableName="orders">
<column name="start_date" type="DATETIME"/>
<constraints nullable="false"/>
</ext:modifyColumn>
</changeSet>
</databaseChangeLog>

0 comments on commit a81faa1

Please sign in to comment.