summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/schema.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-04-06 01:15:46 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-04-06 01:15:46 +0000
commit680c27607328a8f89e446601f7bc7ed56394dc27 (patch)
tree4f5fdc632d648cb723373c06a82eba3332c27807 /lib/sqlalchemy/schema.py
parent753b7c2d3ebe8753d70ff8ed33dfbcdddb5e5d29 (diff)
downloadsqlalchemy-680c27607328a8f89e446601f7bc7ed56394dc27.tar.gz
moves the binding of a TypeEngine object from "schema/statement creation" time into "compilation" time
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r--lib/sqlalchemy/schema.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py
index eabfee9bb..24392b3d9 100644
--- a/lib/sqlalchemy/schema.py
+++ b/lib/sqlalchemy/schema.py
@@ -163,7 +163,6 @@ class Table(sql.TableClause, SchemaItem):
if column.primary_key:
self.primary_key.append(column)
column.table = self
- column.type = self.engine.type_descriptor(column.type)
def append_index(self, index):
self.indexes[index.name] = index