Skip to content

Commit

Permalink
feat: fixing migrations for django42.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Aug 5, 2023
1 parent 51e33ff commit 6d4c326
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions wiki/plugins/images/migrations/0002_alter_imagerevision_image.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2 on 2023-08-05 16:35

from django.db import migrations, models
import wiki.plugins.images.models


class Migration(migrations.Migration):

dependencies = [
('wiki_images', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='imagerevision',
name='image',
field=models.ImageField(
blank=True, height_field='height', max_length=2000,
null=True, upload_to=wiki.plugins.images.models.upload_path,
width_field='width'
),
),
]

0 comments on commit 6d4c326

Please sign in to comment.