#50 Added migration for release.

This commit is contained in:
Marcus Scholz 2021-10-02 04:41:03 +02:00
parent e14ed52eeb
commit 86f04c08ff
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# Generated by Django 3.2.7 on 2021-10-02 02:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('lostplaces', '0011_remove_migrated_photoalbum_data'),
]
operations = [
migrations.AlterField(
model_name='externallink',
name='linktype',
field=models.CharField(blank=True, choices=[('youtube', 'YouTube'), ('vimeo', 'Vimeo'), ('flickr', 'Flickr'), ('googlephotos', 'Google Photos'), ('photoalbum', 'Photo album')], max_length=20, null=True, verbose_name='link type'),
),
migrations.DeleteModel(
name='PhotoAlbum',
),
]