20 lines
488 B
Python
20 lines
488 B
Python
# Generated by Django 3.2.8 on 2021-12-11 22:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generic', '0015_ciduser_ciduserexam'),
|
|
('sbas', '0006_alter_exam_open_access'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='valid_users',
|
|
field=models.ManyToManyField(blank=True, related_name='sba_exams', to='generic.CidUser'),
|
|
),
|
|
]
|