Skip to content
Permalink
Browse files
Patch for issue 8920.
  • Loading branch information
ErunamoJAZZ committed Dec 27, 2013
1 parent 8dd31ff commit 7050265
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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)

0 comments on commit 7050265

Please sign in to comment.