Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfox committed Feb 24, 2025
1 parent 79781a0 commit e030b14
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions registration/migrations/0111_auto_20250224_0015.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.25 on 2025-02-24 05:15

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('registration', '0110_auto_20250219_0242'),
]

operations = [
migrations.AlterField(
model_name='attendee',
name='parentPhone',
field=models.CharField(blank=True, max_length=50),
),
migrations.AlterField(
model_name='attendee',
name='phone',
field=models.CharField(max_length=50),
),
]

0 comments on commit e030b14

Please sign in to comment.