Start move of event size logic to RA from Ec

This commit is contained in:
2020-12-13 16:48:06 +00:00
parent 124b7a8e51
commit 13fcadaf79
4 changed files with 48 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
# Generated by Django 3.1.2 on 2020-12-13 16:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0046_auto_20201213_1625'),
]
operations = [
migrations.RemoveField(
model_name='eventchecklist',
name='event_size',
),
migrations.AddField(
model_name='riskassessment',
name='event_size',
field=models.IntegerField(blank=True, choices=[(0, 'Small'), (1, 'Medium'), (2, 'Large')], null=True),
),
]