mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-09 15:00:21 -04:00
19 lines
427 B
Python
19 lines
427 B
Python
# Generated by Django 3.0.7 on 2020-06-15 02:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0002_auto_20200615_0046'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='teacher',
|
|
name='classes',
|
|
field=models.ManyToManyField(blank=True, related_name='teacher', to='api.Class'),
|
|
),
|
|
]
|