Skip to content

Commit

Permalink
extend overlays field length - Issue #128
Browse files Browse the repository at this point in the history
  • Loading branch information
hholzgra committed Jul 28, 2024
1 parent 6921f84 commit f2a714a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions www/maposmatic/migrations/0036_extend_overlay_length.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.14 on 2024-07-28 09:55

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('maposmatic', '0035_update_keep_until_legacy'),
]

operations = [
migrations.AlterField(
model_name='maprenderingjob',
name='overlay',
field=models.CharField(blank=True, max_length=4095, null=True),
),
]

0 comments on commit f2a714a

Please sign in to comment.