aboutsummaryrefslogtreecommitdiff
path: root/common/changelog/add-foreign-key-pgsql-patch.xml
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-03-28 16:04:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-04-10 18:46:46 +0200
commite7f6315882ef16939f99dd757eaf800b9f12e92b (patch)
treeafbcb4a014e042360aec70d516cfbe17ffac6563 /common/changelog/add-foreign-key-pgsql-patch.xml
parenta8dfcfcff2534695ae19015fd33cb26fd2fb88c6 (diff)
Add changelog support for add/drop index/foreign key
Also diagnose changes to primary keys and establish the 'alters' association.
Diffstat (limited to 'common/changelog/add-foreign-key-pgsql-patch.xml')
-rw-r--r--common/changelog/add-foreign-key-pgsql-patch.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/common/changelog/add-foreign-key-pgsql-patch.xml b/common/changelog/add-foreign-key-pgsql-patch.xml
new file mode 100644
index 0000000..e70ad87
--- /dev/null
+++ b/common/changelog/add-foreign-key-pgsql-patch.xml
@@ -0,0 +1,23 @@
+<changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" version="1">
+ <model version="2">
+ <table name="object">
+ <column name="id" type="INTEGER" null="false"/>
+ <column name="o1" type="INTEGER" null="true"/>
+ <primary-key auto="true">
+ <column name="id"/>
+ </primary-key>
+ <foreign-key name="o1_fk" deferred="true">
+ <column name="o1"/>
+ <references table="object1">
+ <column name="id"/>
+ </references>
+ </foreign-key>
+ </table>
+ <table name="object1">
+ <column name="id" type="INTEGER" null="false"/>
+ <primary-key>
+ <column name="id"/>
+ </primary-key>
+ </table>
+ </model>
+</changelog>