From 017fd0dd14a5040f0819be4577639bc79dd14cd2 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 30 Aug 2012 20:19:01 -0500 Subject: [PATCH] fixed typo in index_name --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index b9c7b62f..f61853e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.0.3 (2012-08-30 20:07:31) stable +Version 2.0.3 (2012-08-30 20:18:58) stable diff --git a/gluon/dal.py b/gluon/dal.py index b053af81..6e01073f 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -2205,7 +2205,7 @@ class MySQLAdapter(BaseAdapter): 'list:string': 'LONGTEXT', 'list:reference': 'LONGTEXT', 'big-id': 'BIGINT AUTO_INCREMENT NOT NULL', - 'big-reference': 'BIGINT, INDEX %(index_name`)s (%(field_name)s), FOREIGN KEY (%(field_name)s) REFERENCES %(foreign_key)s ON DELETE %(on_delete_action)s', + 'big-reference': 'BIGINT, INDEX %(index_name)s (%(field_name)s), FOREIGN KEY (%(field_name)s) REFERENCES %(foreign_key)s ON DELETE %(on_delete_action)s', } def varquote(self,name):