add initial shift reminder functionality
parent
c0ee3eea02
commit
d1bdd2bc74
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.0.4 on 2022-04-20 17:57
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("app", "0003_message_created_at"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="shiftregistration",
|
||||||
|
name="reminder_sent",
|
||||||
|
field=models.BooleanField(default=False),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue