mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-19 14:32:16 +00:00
Start move of event size logic to RA from Ec
This commit is contained in:
22
RIGS/migrations/0047_auto_20201213_1642.py
Normal file
22
RIGS/migrations/0047_auto_20201213_1642.py
Normal 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user