summaryrefslogtreecommitdiff
path: root/odb-tests/common/changelog/add-column-mysql-diff.xml
blob: 992306d25fd3807a4b157c76bc2dde3b1b23cbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="mysql" version="1">
  <changeset version="2">
    <alter-table name="object">
      <add-column name="num" type="INT" null="false"/>
    </alter-table>
  </changeset>

  <model version="1">
    <table name="object" options="ENGINE=InnoDB" kind="object">
      <column name="id" type="INT" null="false"/>
      <primary-key auto="true">
        <column name="id"/>
      </primary-key>
    </table>
  </model>
</changelog>