mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-30 06:53:02 +00:00
24 lines
658 B
Python
24 lines
658 B
Python
# Generated by Django 3.0.11 on 2021-01-21 20:53
|
|
|
|
from django.db import migrations, models
|
|
import registration.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('registration', '0003_auto_20210118_1738'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='participantregistration',
|
|
name='health_sheet',
|
|
),
|
|
migrations.AddField(
|
|
model_name='studentregistration',
|
|
name='health_sheet',
|
|
field=models.FileField(blank=True, default='', upload_to=registration.models.get_random_health_filename, verbose_name='health sheet'),
|
|
),
|
|
]
|