Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilty committed Oct 12, 2021
1 parent 240f493 commit f5c2efc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions wagtailsvg/migrations/0003_alter_svg_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 3.2.8 on 2021-10-12 07:40

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('wagtailsvg', '0002_svg_edit_code'),
]

operations = [
migrations.AlterModelOptions(
name='svg',
options={'ordering': ['-id']},
),
]

0 comments on commit f5c2efc

Please sign in to comment.