mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-17 23:37:47 +02:00
9 lines
188 B
Python
9 lines
188 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
class SearchHistory(models.Model):
|
|
query = models.CharField(max_length=1000)
|
|
|
|
def __str__(self):
|
|
return self.query
|