Extend examination room length
This commit is contained in:
parent
0e5316e733
commit
cbbcc2c5ca
2 changed files with 17 additions and 1 deletions
16
stages/migrations/0033_room_length.py
Normal file
16
stages/migrations/0033_room_length.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0032_contact_nationalite'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='examination',
|
||||
name='room',
|
||||
field=models.CharField(blank=True, max_length=30, verbose_name='Salle'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue