mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
20 lines
527 B
Python
20 lines
527 B
Python
|
# Generated by Django 4.2.2 on 2023-06-28 03:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('subjects', '0002_subjectstudent_subject_students'),
|
||
|
('accounts', '0002_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='customuser',
|
||
|
name='subjects',
|
||
|
field=models.ManyToManyField(related_name='SubjectStudent_user', through='subjects.SubjectStudent', to='subjects.subject'),
|
||
|
),
|
||
|
]
|