Add field 'description' to Shift model
parent
737958a7ab
commit
74481b0bda
@ -0,0 +1,26 @@
|
||||
# Generated by Django 4.0.4 on 2022-05-10 16:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("app", "0004_shift_required_helpers"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="shift",
|
||||
name="description",
|
||||
field=models.TextField(default=""),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="shift",
|
||||
name="required_helpers",
|
||||
field=models.IntegerField(
|
||||
default=0,
|
||||
help_text="When this is set to zero, the room value is used instead.",
|
||||
),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.0.4 on 2022-05-10 16:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("app", "0005_shift_description_alter_shift_required_helpers"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="shift",
|
||||
name="description",
|
||||
field=models.TextField(blank=True, default=""),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue