#8347 closed (fixed)
missing fields/definitions in sqlite3 introspection module
Reported by: | trbs | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Keywords: | sqlite, missing, fields, introspection | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The floatfield is missing in sqlite3 introspection module, 'real' fields in sqlite3 are suppose to use FloatField in Django ORM.
Attached is a very simple patch to add it to the base_data_types_reverse list.
Attachments (2)
Change History (7)
by , 16 years ago
Attachment: | django_sqlite_backend_introspection_real_missing.diff added |
---|
comment:1 by , 16 years ago
by , 16 years ago
Attachment: | django_sqlite_backend_introspection_real_missing.2.diff added |
---|
comment:2 by , 16 years ago
Keywords: | sqlite missing fields introspection added |
---|---|
milestone: | → 1.0 |
Summary: | real / floatfield is missing in sqlite3 introspection module → missing fields/definitions in sqlite3 introspection module |
comment:3 by , 16 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:4 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
updated the patch to also include: 'smallint unsigned', 'integer unsigned' and 'decimal'.