mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-03-16 22:10:28 +00:00
9 lines
154 B
Python
9 lines
154 B
Python
from django.db import models
|
|
|
|
__all__ = ("FileTest",)
|
|
|
|
|
|
class FileTest(models.Model):
|
|
"""File test."""
|
|
|
|
file = models.FileField(upload_to="foo/")
|