django-fobi/examples/simple/foo/models.py

10 lines
154 B
Python
Raw Normal View History

2014-10-11 03:54:24 +00:00
from django.db import models
__all__ = ('FileTest',)
2014-10-11 03:54:24 +00:00
class FileTest(models.Model):
"""File test."""
file = models.FileField(upload_to='foo/')