mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
# Generated by Django 4.2.2 on 2023-06-26 14:03
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('accounts', '0003_delete_studentstatus'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='StudentStatus',
|
|
fields=[
|
|
('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, primary_key=True, serialize=False, to=settings.AUTH_USER_MODEL)),
|
|
('x_latitude', models.FloatField(null=True)),
|
|
('y_latitude', models.FloatField(null=True)),
|
|
('subject', models.CharField(max_length=100)),
|
|
('year_level', models.CharField(choices=[('1st', '1st year'), ('2nd', '2nd year'), ('3rd', '3rd year'), ('4th', '4th year'), ('5th', '5th Year'), ('Irreg', 'Irregular')], max_length=50)),
|
|
('semester', models.CharField(choices=[('1st', '1st semester'), ('2nd', '2nd semester')], max_length=50)),
|
|
('timestamp', models.DateField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|