11 lines
562 B
XML
11 lines
562 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<migration xmlns="http://ebean-orm.github.io/xml/ns/dbmigration">
|
|
<changeSet type="apply">
|
|
<addColumn tableName="purchase_order">
|
|
<column name="all_loading_site" type="boolean" defaultValue="true" notnull="true"/>
|
|
<column name="all_unloading_site" type="boolean" defaultValue="true" notnull="true"/>
|
|
<column name="unloading_plant_id" type="varchar"/>
|
|
<column name="loading_site_id" type="uuid"/>
|
|
</addColumn>
|
|
</changeSet>
|
|
</migration> |