mirror of
https://github.com/django/django.git
synced 2025-10-05 16:20:26 +00:00
Fixed #589 -- Added FilePathField. It's available as an ORM field and as a standalone field in django.core.formfields. Thanks, jay@skabber.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9fdacc7a66
commit
5f9fe6d403
6 changed files with 68 additions and 0 deletions
|
@ -154,6 +154,7 @@ DATA_TYPES = {
|
|||
'DateTimeField': 'timestamp with time zone',
|
||||
'EmailField': 'varchar(75)',
|
||||
'FileField': 'varchar(100)',
|
||||
'FilePathField': 'varchar(100)',
|
||||
'FloatField': 'numeric(%(max_digits)s, %(decimal_places)s)',
|
||||
'ImageField': 'varchar(100)',
|
||||
'IntegerField': 'integer',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue