summaryrefslogtreecommitdiff
path: root/odb-tests/common/changelog/add-foreign-key-pgsql-diff.xml
blob: 793b009e5667c87c0bdda5c0a42a1d1912107b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="pgsql" version="1">
  <changeset version="2">
    <alter-table name="object">
      <add-column name="o1" type="INTEGER" null="true"/>
      <add-foreign-key name="o1_fk" deferrable="DEFERRED">
        <column name="o1"/>
        <references table="object1">
          <column name="id"/>
        </references>
      </add-foreign-key>
    </alter-table>
  </changeset>

  <model version="1">
    <table name="object" kind="object">
      <column name="id" type="INTEGER" null="false"/>
      <primary-key auto="true">
        <column name="id"/>
      </primary-key>
    </table>
    <table name="object1" kind="object">
      <column name="id" type="INTEGER" null="false"/>
      <primary-key>
        <column name="id"/>
      </primary-key>
    </table>
  </model>
</changelog>