diff --git a/django_lostplaces/lostplaces/migrations_release_temp/0012_.remove_photoalbum,change linktype.py b/django_lostplaces/lostplaces/migrations_release_temp/0012_.remove_photoalbum,change linktype.py new file mode 100644 index 0000000..d4209f5 --- /dev/null +++ b/django_lostplaces/lostplaces/migrations_release_temp/0012_.remove_photoalbum,change linktype.py @@ -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', + ), + ]