aboutsummaryrefslogtreecommitdiff
path: root/common/changelog/add-table-mysql-patch.xml
diff options
context:
space:
mode:
Diffstat (limited to 'common/changelog/add-table-mysql-patch.xml')
-rw-r--r--common/changelog/add-table-mysql-patch.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/changelog/add-table-mysql-patch.xml b/common/changelog/add-table-mysql-patch.xml
index 5178d70..4d0af47 100644
--- a/common/changelog/add-table-mysql-patch.xml
+++ b/common/changelog/add-table-mysql-patch.xml
@@ -1,13 +1,13 @@
<changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="mysql" version="1">
<model version="2">
- <table name="object1">
+ <table name="object1" options="ENGINE=InnoDB">
<column name="id" type="INT" null="false"/>
<column name="num" type="INT" null="false"/>
<primary-key>
<column name="id"/>
</primary-key>
</table>
- <table name="object">
+ <table name="object" options="ENGINE=InnoDB">
<column name="id" type="INT" null="false"/>
<column name="num" type="INT" null="false"/>
<column name="o1" type="INT" null="true"/>
@@ -21,7 +21,7 @@
</references>
</foreign-key>
</table>
- <table name="object_nums">
+ <table name="object_nums" options="ENGINE=InnoDB">
<column name="object_id" type="INT" null="false"/>
<column name="index" type="BIGINT UNSIGNED" null="false"/>
<column name="value" type="INT" null="false"/>