mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
22 lines
582 B
Python
22 lines
582 B
Python
# Generated by Django 4.2.3 on 2023-09-03 09:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Year_Level',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=64, unique=True)),
|
|
('shortname', models.CharField(max_length=16, unique=True)),
|
|
],
|
|
),
|
|
]
|