mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2025-06-29 00:35:45 +08:00
Implemented geofencing logic for student_status and study_groups with landmark labels
This commit is contained in:
parent
7938c3ceef
commit
a67ea5cd8a
9 changed files with 85 additions and 27 deletions
|
@ -0,0 +1,20 @@
|
|||
# Generated by Django 4.2.3 on 2023-07-14 14:51
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('landmarks', '0001_initial'),
|
||||
('student_status', '0002_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='studentstatus',
|
||||
name='landmark',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='landmarks.landmark'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue