Skip to content

Commit

Permalink
chore: Update region name_en field to allow null and blank values
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorley15 committed Aug 21, 2024
1 parent 4cdbb75 commit f32a339
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions backend/server/worldtravel/migrations/0003_alter_region_name_en.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.8 on 2024-08-21 14:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('worldtravel', '0002_region_name_en'),
]

operations = [
migrations.AlterField(
model_name='region',
name='name_en',
field=models.CharField(blank=True, max_length=100, null=True),
),
]

0 comments on commit f32a339

Please sign in to comment.