File size: 200 Bytes
d8bbcde
 
 
 
 
 
1
2
3
4
5
6
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)