kenken999's picture
test
d8bbcde
raw
history blame
200 Bytes
from django.db import models
class GoogleLensLog(models.Model):
image_url = models.CharField(max_length=255)
data = models.TextField()
created_at = models.DateTimeField(auto_now_add=True)