mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2025-01-19 19:03:00 +08:00
8 lines
235 B
Python
8 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)
|