dbstorage/dbfilestorage/models.py
2016-12-07 15:57:24 -05:00

12 lines
273 B
Python

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)