mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
20 lines
529 B
Python
20 lines
529 B
Python
# Generated by Django 4.2.2 on 2023-06-27 06:34
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('courses', '0001_initial'),
|
|
('accounts', '0003_alter_customuser_course'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customuser',
|
|
name='course',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='courses.course'),
|
|
),
|
|
]
|