From 49be6a6c16493bce667bedd62ab3194b15ff0540 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Wed, 11 Jul 2012 09:17:30 -0500 Subject: [PATCH] table._migrated removed, not necessary --- VERSION | 2 +- gluon/dal.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/VERSION b/VERSION index a5f379d9..489d4bd4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-07-11 09:16:20) dev +Version 2.00.0 (2012-07-11 09:17:27) dev diff --git a/gluon/dal.py b/gluon/dal.py index 01c205ed..92aff5cd 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -841,7 +841,6 @@ class BaseAdapter(ConnectionPool): logfile, fake_migrate=False, ): - table._migrated = True table._db._migrated.append(table._tablename) tablename = table._tablename def fix(item): @@ -7089,7 +7088,6 @@ class Table(dict): self._trigger_name = args.get('trigger_name',None) or \ db and db._adapter.trigger_name(tablename) self._common_filter = args.get('common_filter', None) - self._migrated = False self._before_insert = [] self._before_update = [lambda self,fs:self.delete_uploaded_files(fs)]