mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
d911a64ce8
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8007 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
227 B
Python
10 lines
227 B
Python
import tempfile
|
|
import os
|
|
from django.db import models
|
|
|
|
UPLOAD_ROOT = tempfile.mkdtemp()
|
|
UPLOAD_TO = os.path.join(UPLOAD_ROOT, 'test_upload')
|
|
|
|
class FileModel(models.Model):
|
|
testfile = models.FileField(upload_to=UPLOAD_TO)
|