Skip to content

Commit

Permalink
Merge pull request #1042 from ErunamoJAZZ/master
Browse files Browse the repository at this point in the history
Patch for issue 8920.
  • Loading branch information
timlinux committed Dec 27, 2013
2 parents 8dd31ff + 7050265 commit 4b9edc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/plugin.py
Expand Up @@ -985,7 +985,7 @@ class TableConstraint(TableSubItemObject):
types = { "c" : TypeCheck, "f" : TypeForeignKey, "p" : TypePrimaryKey, "u" : TypeUnique, "x" : TypeExclusion }

onAction = { "a" : "NO ACTION", "r" : "RESTRICT", "c" : "CASCADE", "n" : "SET NULL", "d" : "SET DEFAULT" }
matchTypes = { "u" : "UNSPECIFIED", "f" : "FULL", "p" : "PARTIAL" }
matchTypes = { "u" : "UNSPECIFIED", "f" : "FULL", "p" : "PARTIAL", "s" : "SIMPLE" }

def __init__(self, table):
TableSubItemObject.__init__(self, table)
Expand Down

0 comments on commit 4b9edc7

Please sign in to comment.