Skip to content

Commit

Permalink
Make migration for help text change
Browse files Browse the repository at this point in the history
  • Loading branch information
CamLamb committed Sep 5, 2023
1 parent 65b8229 commit 13a31e1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/peoplefinder/migrations/0109_alter_person_first_name.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.10 on 2023-09-05 09:34

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("peoplefinder", "0108_alter_person_contact_email_alter_person_email_and_more"),
]

operations = [
migrations.AlterField(
model_name="person",
name="first_name",
field=models.CharField(max_length=200),
),
]

0 comments on commit 13a31e1

Please sign in to comment.