diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-26 15:54:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-26 15:54:19 +0200 |
commit | 08998bc4e38c07222f0d995824d576a4b424ed6b (patch) | |
tree | 594af2f47e79c97360c6d5f144c906c94a3604a8 /common/changelog/add-foreign-key-mysql-patch.xml | |
parent | 08c135da0bc2f63f8381c690affae0d6b5804cff (diff) |
Add support for table options in changelog, use to handle MySQL engine
Diffstat (limited to 'common/changelog/add-foreign-key-mysql-patch.xml')
-rw-r--r-- | common/changelog/add-foreign-key-mysql-patch.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/changelog/add-foreign-key-mysql-patch.xml b/common/changelog/add-foreign-key-mysql-patch.xml index b4d2f48..fa21c84 100644 --- a/common/changelog/add-foreign-key-mysql-patch.xml +++ b/common/changelog/add-foreign-key-mysql-patch.xml @@ -1,6 +1,6 @@ <changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="mysql" version="1"> <model version="2"> - <table name="object"> + <table name="object" options="ENGINE=InnoDB"> <column name="id" type="INT" null="false"/> <column name="o1" type="INT" null="true"/> <primary-key auto="true"> @@ -13,7 +13,7 @@ </references> </foreign-key> </table> - <table name="object1"> + <table name="object1" options="ENGINE=InnoDB"> <column name="id" type="INT" null="false"/> <primary-key> <column name="id"/> |