mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
19 lines
425 B
Python
19 lines
425 B
Python
|
# Generated by Django 4.2.2 on 2023-06-26 15:11
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('student_status', '0002_rename_x_latitude_studentstatus_x_and_more'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='studentstatus',
|
||
|
name='active',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|