mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-30 01:14:42 +00:00
4 lines
105 B
Python
4 lines
105 B
Python
|
|
from django.db import models
|
||
|
|
|
||
|
|
class FileTest(models.Model):
|
||
|
|
file = models.FileField(upload_to='foo/')
|