diff options
Diffstat (limited to 'common/changelog/model-mysql.xml')
-rw-r--r-- | common/changelog/model-mysql.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/changelog/model-mysql.xml b/common/changelog/model-mysql.xml index 054e9fb..9398955 100644 --- a/common/changelog/model-mysql.xml +++ b/common/changelog/model-mysql.xml @@ -1,6 +1,6 @@ <changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="mysql" version="1"> <model version="1"> - <table name="object"> + <table name="object" options="ENGINE=InnoDB"> <column name="id" type="INT" null="false"/> <column name="num" type="INT" null="true" default="0" options="DUMMY=1"/> <column name="v_x" type="INT" null="false"/> @@ -26,7 +26,7 @@ <column name="v_y"/> </index> </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"/> @@ -43,7 +43,7 @@ <column name="index"/> </index> </table> - <table name="object1"> + <table name="object1" options="ENGINE=InnoDB"> <column name="id_x" type="INT" null="false"/> <column name="id_y" type="INT" null="false"/> <column name="num" type="INT" null="false"/> |