from django.db import models class GoogleLensData(models.Model): image_url = models.URLField(max_length=200) description = models.TextField() created_at = models.DateTimeField(auto_now_add=True) def __str__(self): return self.description