-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deselected_source to Memberships
- Loading branch information
1 parent
5822fd9
commit 5abd8a8
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
ynr/apps/popolo/migrations/0050_membership_deselected_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,20 @@ | ||
# Generated by Django 4.2.3 on 2023-09-21 16:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("popolo", "0049_membership_deselected"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="membership", | ||
name="deselected_source", | ||
field=models.URLField( | ||
blank=True, | ||
help_text="A URL to a source document about the deselection", | ||
), | ||
), | ||
] |
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