mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
19 lines
392 B
Python
19 lines
392 B
Python
|
# Generated by Django 4.2.3 on 2023-09-02 05:03
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('accounts', '0002_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='customuser',
|
||
|
name='student_id_number',
|
||
|
field=models.IntegerField(unique=True),
|
||
|
),
|
||
|
]
|