mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-02-11 15:41:18 +00:00
Commit forgotten migrations
This commit is contained in:
parent
2d62bec690
commit
b2f2dfde5f
28
apps/participation/migrations/0003_auto_20200927_1309.py
Normal file
28
apps/participation/migrations/0003_auto_20200927_1309.py
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Generated by Django 3.1.1 on 2020-09-27 11:09
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('participation', '0002_team_grant_animath_access_videos'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='video',
|
||||||
|
name='participation',
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='participation',
|
||||||
|
name='solution',
|
||||||
|
field=models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='participation', to='participation.video', verbose_name='solution video'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='participation',
|
||||||
|
name='synthesis',
|
||||||
|
field=models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='participation_synthesis', to='participation.video', verbose_name='synthesis video'),
|
||||||
|
),
|
||||||
|
]
|
24
apps/participation/migrations/0004_auto_20200927_1322.py
Normal file
24
apps/participation/migrations/0004_auto_20200927_1322.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated by Django 3.1.1 on 2020-09-27 11:22
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('participation', '0003_auto_20200927_1309'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='participation',
|
||||||
|
name='solution',
|
||||||
|
field=models.OneToOneField(default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='participation_solution', to='participation.video', verbose_name='solution video'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='participation',
|
||||||
|
name='synthesis',
|
||||||
|
field=models.OneToOneField(default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='participation_synthesis', to='participation.video', verbose_name='synthesis video'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user