mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-06-22 01:58:24 +02:00
Store the BBB link in the Pool model
This commit is contained in:
19
apps/participation/migrations/0012_pool_bbb_code.py
Normal file
19
apps/participation/migrations/0012_pool_bbb_code.py
Normal file
@ -0,0 +1,19 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user