Fix LogEntry user when PAPERLESS_DISABLE_LOGIN is set to true

This commit is contained in:
CkuT
2018-03-30 08:33:08 +02:00
parent b733b32c1d
commit 3aafabba26
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-07-15 17:12
from __future__ import unicode_literals
from django.contrib.auth.models import User
from django.db import migrations
def forwards_func(apps, schema_editor):
User.objects.create(username="consumer")
def reverse_func(apps, schema_editor):
User.objects.get(username="consumer").delete()
class Migration(migrations.Migration):
dependencies = [
('documents', '0018_auto_20170715_1712'),
]
operations = [
migrations.RunPython(forwards_func, reverse_func),
]