mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
12 lines
638 B
XML
12 lines
638 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<migration xmlns="http://ebean-orm.github.io/xml/ns/dbmigration">
|
|
<changeSet type="pendingDrops" suppressDropsForever="true">
|
|
<dropColumn columnName="boom" tableName="document" withHistory="true"/>
|
|
<dropColumn columnName="baz" tableName="document" withHistory="true"/>
|
|
<dropColumn columnName="bar" tableName="document" withHistory="true"/>
|
|
</changeSet>
|
|
<changeSet type="pendingDrops">
|
|
<dropColumn columnName="zing" tableName="document" withHistory="true"/>
|
|
<dropColumn columnName="zong" tableName="document" withHistory="true"/>
|
|
</changeSet>
|
|
</migration> |