Skip to content

Commit

Permalink
Upgrade to Wagtail 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
trickeydan committed Nov 10, 2024
1 parent 8798752 commit 6e4593e
Show file tree
Hide file tree
Showing 3 changed files with 281 additions and 273 deletions.
19 changes: 19 additions & 0 deletions kmicms/core/migrations/0002_customimage_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 5.1.3 on 2024-11-10 20:33

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("core", "0001_initial"),
]

operations = [
migrations.AddField(
model_name="customimage",
name="description",
field=models.CharField(
blank=True, default="", max_length=255, verbose_name="description"
),
),
]
Loading

0 comments on commit 6e4593e

Please sign in to comment.