added storage of length, notnull, unique in .table files

This commit is contained in:
mdipierro
2012-10-14 14:41:28 -05:00
parent 238c04ff68
commit dca071cb6f
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.1.0 (2012-10-14 14:28:13) dev
Version 2.1.0 (2012-10-14 14:41:24) dev
+3
View File
@@ -835,6 +835,9 @@ class BaseAdapter(ConnectionPool):
# add to list of fields
sql_fields[field_name] = dict(
length=field.length,
unique=field.unique,
notnull=field.notnull,
sortable=sortable,
type=str(field_type),
sql=ftype)