diff --git a/webapp/migrations/0048_auto_20181117_2128.py b/webapp/migrations/0048_auto_20181117_2128.py index f7e2751..43a13a3 100644 --- a/webapp/migrations/0048_auto_20181117_2128.py +++ b/webapp/migrations/0048_auto_20181117_2128.py @@ -30,4 +30,8 @@ class Migration(migrations.Migration): field=models.SlugField(unique=True), ), migrations.RunPython(gen_uuid, reverse_code=migrations.RunPython.noop), + # Check if this fixes the database in production, not compliant with sqlite + # https://code.djangoproject.com/ticket/25012 + # migrations.RunSQL('ALTER TABLE webapp_basefeed_tags ALTER tag_id TYPE int ALTER tag_id REFERENCES ("id")'), + ]