Skip to content

Commit

Permalink
Add migration for viaf date override to version control
Browse files Browse the repository at this point in the history
  • Loading branch information
rlskoeser committed Aug 13, 2024
1 parent e5c408d commit f9d7889
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions mep/people/migrations/0023_person_viaf_date_override.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 3.2.20 on 2024-08-12 15:19

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("people", "0022_populate_birth_death_dates_from_viaf"),
]

operations = [
migrations.AddField(
model_name="person",
name="viaf_date_override",
field=models.BooleanField(
default=False,
help_text="Check this to disable VIAF birth/death date lookup on save",
),
),
]

0 comments on commit f9d7889

Please sign in to comment.