Skip to content

Commit

Permalink
Merge pull request #175 from springload/chore/silence-migration-warnings
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
gdelavil authored Sep 20, 2023
2 parents 079fa5a + 5dc8fc3 commit adbdf2f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions core/migrations/0015_alter_wagtailcompanypage_coords.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.13 on 2023-09-04 23:00

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0014_submitformfield_clean_name'),
]

operations = [
migrations.AlterField(
model_name='wagtailcompanypage',
name='coords',
field=models.CharField(blank=True, max_length=255, null=True, validators=[django.core.validators.RegexValidator('-?[0-9\\.]+,\\s?-?[0-9\\.]+')]),
),
]

0 comments on commit adbdf2f

Please sign in to comment.