18 lines
479 B
Python
18 lines
479 B
Python
# Generated by Django 5.0.1 on 2024-01-29 21:19
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('accounts', '0003_user_subjects'),
|
|
('subjects', '0003_alter_subject_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='subjects',
|
|
field=models.ManyToManyField(blank=True, to='subjects.subject'),
|
|
),
|
|
]
|