blob: 9ed12459b9261dbfe3fc4a38e249806f67c51c7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="sqlite" version="1">
<changeset version="2">
<alter-table name="object">
<drop-column name="num"/>
</alter-table>
</changeset>
<model version="1">
<table name="object">
<column name="id" type="INTEGER" null="false"/>
<column name="num" type="INTEGER" null="false"/>
<primary-key auto="true">
<column name="id"/>
</primary-key>
</table>
</model>
</changelog>
|