kenken999's picture
test
565ab19
raw
history blame
156 Bytes
from django.db import models
class ImageModel(models.Model):
image = models.ImageField(upload_to='images/')
ocr_text = models.TextField(blank=True)