diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-12 11:54:57 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-12 16:37:15 +0500 |
commit | 06540fec5268e799c859c1f428e64351ab9431e9 (patch) | |
tree | c6a31a2de4f84c9159c02acd5ac171970f7a13b2 /schema/changelog-3.7-notmssql.xml | |
parent | 8d5b4ec5ec8e4aaa2c34793e3100a7782551afbd (diff) | |
download | trackermap-server-06540fec5268e799c859c1f428e64351ab9431e9.tar.gz trackermap-server-06540fec5268e799c859c1f428e64351ab9431e9.tar.bz2 trackermap-server-06540fec5268e799c859c1f428e64351ab9431e9.zip |
Add Foreign Key Constraint for groupIds
Diffstat (limited to 'schema/changelog-3.7-notmssql.xml')
-rw-r--r-- | schema/changelog-3.7-notmssql.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/schema/changelog-3.7-notmssql.xml b/schema/changelog-3.7-notmssql.xml new file mode 100644 index 000000000..a22703073 --- /dev/null +++ b/schema/changelog-3.7-notmssql.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<databaseChangeLog + xmlns="http://www.liquibase.org/xml/ns/dbchangelog" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog + http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd" + logicalFilePath="changelog-3.7-notmssql"> + + <changeSet author="author" id="changelog-3.7-notmssql"> + + <preConditions onFail="CONTINUE"> + <not> + <dbms type="mssql" /> + </not> + </preConditions> + <addForeignKeyConstraint baseColumnNames="groupid" baseTableName="groups" constraintName="fk_group_group_groupid" onDelete="SET NULL" onUpdate="RESTRICT" referencedColumnNames="id" referencedTableName="groups"/> + + </changeSet> +</databaseChangeLog> |