a few updates to rcr mig
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 4.1.4 on 2023-12-13 20:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("rcr", "0005_item_assigned_to_alter_item_assessed_by"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="item",
|
||||
name="outcome_free_text",
|
||||
field=models.CharField(
|
||||
default="",
|
||||
help_text="Reason for outcome (if not available above)",
|
||||
max_length=255,
|
||||
),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.4 on 2023-12-13 20:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('rcr', '0006_item_outcome_free_text'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='item',
|
||||
name='outcome_free_text',
|
||||
field=models.CharField(blank=True, default='', help_text='Reason for outcome (if not available above)', max_length=255),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 4.1.4 on 2023-12-13 21:56
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('rcr', '0007_alter_item_outcome_free_text'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='item',
|
||||
options={'ordering': ('pk',)},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user