hovel / imagestore

Django gallery solution.
BSD 3-Clause "New" or "Revised" License
164 stars 72 forks source link

Fix migrations missing brief #72

Closed CristiCor closed 6 years ago

CristiCor commented 6 years ago

Imagestore 2.7.6 did not have a 'brief' field on Album. When the initial migration for Django 1.7 was created it was assumed that users were using Imagestore versions that already had that field.

With the new migration, when moving to Django 1.7 from Imagestore 2.7.6 you must fake the initial migration, which now does not contain the brief field, and then migrate the second migration.

lampslave commented 6 years ago

Thank you.