-
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/3401-find-and-linkify-pincites' …
…into 3401-find-and-linkify-pincites
- Loading branch information
Showing
6 changed files
with
426 additions
and
16 deletions.
There are no files selected for viewing
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
64 changes: 64 additions & 0 deletions
64
cl/people_db/migrations/0019_alter_person_religion_alter_personevent_religion.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,64 @@ | ||
# Generated by Django 5.1.5 on 2025-02-05 03:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"people_db", | ||
"0018_alter_person_religion_alter_personevent_religion_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="person", | ||
name="religion", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("ca", "Catholic"), | ||
("pr", "Protestant"), | ||
("je", "Jewish"), | ||
("mu", "Muslim"), | ||
("at", "Atheist"), | ||
("ag", "Agnostic"), | ||
("mo", "Mormon"), | ||
("bu", "Buddhist"), | ||
("hi", "Hindu"), | ||
("ep", "Episcopalian"), | ||
("ro", "Roman Catholic"), | ||
("me", "Methodist"), | ||
("pe", "Presbyterian"), | ||
], | ||
help_text="The religion of a person", | ||
max_length=30, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="personevent", | ||
name="religion", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("ca", "Catholic"), | ||
("pr", "Protestant"), | ||
("je", "Jewish"), | ||
("mu", "Muslim"), | ||
("at", "Atheist"), | ||
("ag", "Agnostic"), | ||
("mo", "Mormon"), | ||
("bu", "Buddhist"), | ||
("hi", "Hindu"), | ||
("ep", "Episcopalian"), | ||
("ro", "Roman Catholic"), | ||
("me", "Methodist"), | ||
("pe", "Presbyterian"), | ||
], | ||
help_text="The religion of a person", | ||
max_length=30, | ||
), | ||
), | ||
] |
10 changes: 10 additions & 0 deletions
10
cl/people_db/migrations/0019_alter_person_religion_alter_personevent_religion.sql
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,10 @@ | ||
BEGIN; | ||
-- | ||
-- Alter field religion on person | ||
-- | ||
-- (no-op) | ||
-- | ||
-- Alter field religion on personevent | ||
-- | ||
-- (no-op) | ||
COMMIT; |
Oops, something went wrong.