18 lines
499 B
Python
18 lines
499 B
Python
# Generated by Django 5.0.1 on 2024-01-29 21:06
|
|
from django.db import migrations
|
|
from django.db import 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'),
|
|
),
|
|
]
|