dbstorage/dbfilestorage/models.py

12 lines
273 B
Python
Raw Normal View History

2016-12-07 20:05:14 +00:00
from django.db import models
# Create your models here.
class DBFile(models.Model):
name = models.CharField(max_length=100)
content_type = models.CharField(max_length=100)
b64 = models.TextField()
def __unicode__(self):
return unicode(self.name)