Hotfix for Migration Error

This commit is contained in:
reverend 2021-12-31 23:27:35 +01:00
parent 0f7b799c11
commit a4f80820c9
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='explorer',
name='profile_image',
field=easy_thumbnails.fields.ThumbnailerImageField(blank=True, help_text='Optional profile image for display in Explorer profile', null=True, upload_to=lostplaces.models.models.generate_profile_image_filename, verbose_name='Profile image'),
field=easy_thumbnails.fields.ThumbnailerImageField(blank=True, help_text='Optional profile image for display in Explorer profile', null=True, upload_to=lostplaces.models.generate_profile_image_filename, verbose_name='Profile image'),
),
migrations.AddField(
model_name='explorer',

View File

@ -8,7 +8,7 @@ with open('Readme.md') as f:
setup(
name='django-lostplaces',
version='0.1.3',
version='0.1.4-hotfix-31-12-21_22-18',
description='A django app to manage lost places',
author='Reverend',
author_email='reverend@reverend2048.de',
@ -33,4 +33,4 @@ setup(
],
include_package_data=True,
license='MIT'
)
)