diff options
Diffstat (limited to 'common/changelog/alter-column-mysql-patch.xml')
-rw-r--r-- | common/changelog/alter-column-mysql-patch.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/changelog/alter-column-mysql-patch.xml b/common/changelog/alter-column-mysql-patch.xml new file mode 100644 index 0000000..a1d25da --- /dev/null +++ b/common/changelog/alter-column-mysql-patch.xml @@ -0,0 +1,11 @@ +<changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" version="1"> + <model version="2"> + <table name="object"> + <column name="id" type="INT" null="false"/> + <column name="num" type="INT" null="true"/> + <primary-key auto="true"> + <column name="id"/> + </primary-key> + </table> + </model> +</changelog> |