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