Skip to content

Commit

Permalink
Patch for issue 8920.
Browse files Browse the repository at this point in the history
  • Loading branch information
ErunamoJAZZ committed Dec 27, 2013
1 parent 8dd31ff commit 7050265
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 7050265

Please sign in to comment.