Skip to content

Commit

Permalink
put the symmetricds trigger in the same schema as the table for db2
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 13, 2011
1 parent fb94a59 commit 0d59173
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -55,7 +55,7 @@
<entry key="insertTriggerTemplate">
<value>
<![CDATA[
CREATE TRIGGER $(triggerName)
CREATE TRIGGER $(schemaName)$(triggerName)
AFTER INSERT ON $(schemaName)$(tableName)
REFERENCING NEW AS NEW
FOR EACH ROW MODE DB2SQL
Expand All @@ -76,7 +76,7 @@
<entry key="updateTriggerTemplate">
<value>
<![CDATA[
CREATE TRIGGER $(triggerName)
CREATE TRIGGER $(schemaName)$(triggerName)
AFTER UPDATE ON $(schemaName)$(tableName)
REFERENCING OLD AS OLD NEW AS NEW
FOR EACH ROW MODE DB2SQL
Expand Down Expand Up @@ -107,7 +107,7 @@
<entry key="deleteTriggerTemplate">
<value>
<![CDATA[
CREATE TRIGGER $(triggerName)
CREATE TRIGGER $(schemaName)$(triggerName)
AFTER DELETE ON $(schemaName)$(tableName)
REFERENCING OLD AS OLD
FOR EACH ROW MODE DB2SQL
Expand Down

0 comments on commit 0d59173

Please sign in to comment.