Commit 33a31a65 authored by Michal Čihař's avatar Michal Čihař

Add missing dependency on auth migratons in translate models

Fixes #1090
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent c062f5be
...@@ -14,6 +14,7 @@ class Migration(migrations.Migration): ...@@ -14,6 +14,7 @@ class Migration(migrations.Migration):
dependencies = [ dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL), migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('lang', '0001_initial'), ('lang', '0001_initial'),
('auth', '0001_initial'),
] ]
operations = [ operations = [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment