Add student expert

This commit is contained in:
Claude Paroz 2018-02-15 16:05:25 +01:00
parent 127460e352
commit 2b678f186e
3 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('stages', '0006_student_supervisor_mentor'),
]
operations = [
migrations.AddField(
model_name='student',
name='expert',
field=models.ForeignKey(blank=True, null=True, on_delete=models.deletion.SET_NULL, related_name='rel_expert', to='stages.CorpContact', verbose_name='Expert'),
),
]