StudE-Backend/stude/study_groups/models.py

18 lines
607 B
Python
Raw Normal View History

2023-06-27 21:12:03 +08:00
from django.db import models
from subjects.models import Subject
from django.contrib.gis.db import models as gis_models
from django.contrib.gis.geos import Point
2023-06-27 21:12:03 +08:00
# Create your models here.
class StudyGroup(models.Model):
name = models.CharField(max_length=48)
location = gis_models.PointField(blank=True, null=True, srid=4326)
2023-06-27 21:12:03 +08:00
subject = models.ForeignKey(Subject, on_delete=models.CASCADE)
timestamp = models.DateField(auto_now_add=True)
landmark = models.ForeignKey(
'landmarks.Landmark', on_delete=models.SET_NULL, null=True)
2023-06-27 21:12:03 +08:00
def __str__(self):
return self.name