mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 23:27:08 +00:00
20 lines
622 B
Python
20 lines
622 B
Python
# Generated by Django 3.0.11 on 2021-01-21 16:47
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('participation', '0011_note'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='pool',
|
|
name='bbb_code',
|
|
field=models.CharField(blank=True, default='', help_text='The code of the form xxx-xxx-xxx at the end of the BBB link.', max_length=11, validators=[django.core.validators.RegexValidator('[a-z]{3}-[a-z]{3}-[a-z]{3}')], verbose_name='BigBlueButton code'),
|
|
),
|
|
]
|