This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'Last known event date' as alias for planned_closure, closes #438
Also a migration which covers some recent model metadata changes
- Loading branch information
Showing
2 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
vaccinate/core/migrations/0108_availabilitytag_planned_closure_report_source.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Generated by Django 3.1.8 on 2021-04-28 17:25 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("core", "0107_decimal_for_latitude_longitude"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="availabilitytag", | ||
options={"ordering": ["-group", "name"]}, | ||
), | ||
migrations.AlterField( | ||
model_name="report", | ||
name="planned_closure", | ||
field=models.DateField( | ||
blank=True, | ||
help_text='Date this site a site plans to stop operating, "planned_closure" in our API', | ||
null=True, | ||
verbose_name="Last known event date", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="report", | ||
name="report_source", | ||
field=models.CharField( | ||
choices=[ | ||
("ca", "Caller app"), | ||
("dc", "Data corrections"), | ||
("wb", "Web banking"), | ||
], | ||
default="ca", | ||
max_length=2, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters