summaryrefslogtreecommitdiff
path: root/parts/django/tests/regressiontests/file_uploads/models.py
blob: 9d020509afd218d1b0edac1fad1ec66137997479 (plain)
1
2
3
4
5
6
7
8
9
10
import tempfile
import os
from django.db import models
from django.core.files.storage import FileSystemStorage

temp_storage = FileSystemStorage(tempfile.mkdtemp())
UPLOAD_TO = os.path.join(temp_storage.location, 'test_upload')

class FileModel(models.Model):
    testfile = models.FileField(storage=temp_storage, upload_to='test_upload')