mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
7 lines
235 B
Python
7 lines
235 B
Python
from django.db import models
|
|
|
|
|
|
class SearchResult(models.Model):
|
|
title = models.CharField(max_length=1000)
|
|
link = models.CharField(max_length=1000)
|
|
timestamp = models.DateTimeField(auto_now_add=True, editable=False)
|