We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f81cf97 commit ba533f6Copy full SHA for ba533f6
django_spanner/schema.py
@@ -10,6 +10,7 @@
10
class DatabaseSchemaEditor(BaseDatabaseSchemaEditor):
11
sql_create_table = "CREATE TABLE %(table)s (%(definition)s) PRIMARY KEY(%(primary_key)s)"
12
sql_delete_table = "DROP TABLE %(table)s"
13
+ sql_create_fk = None
14
# Spanner doesn't support partial indexes. This string omits the
15
# %(condition)s placeholder so that partial indexes are ignored.
16
sql_create_index = "CREATE INDEX %(name)s ON %(table)s%(using)s (%(columns)s)%(extra)s"
0 commit comments