apply some patches from @brookst

This commit is contained in:
dadosch
2018-08-29 00:04:48 +02:00
parent 1f293f2693
commit 7fb3204b3b
10 changed files with 36 additions and 18 deletions

View File

@@ -32,7 +32,7 @@ def realign_senders(apps, schema_editor):
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0002_auto_20151226_1316'),
]

View File

@@ -6,7 +6,7 @@ from django.db import migrations
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0010_log'),
]

View File

@@ -112,7 +112,7 @@ def move_documents_and_create_thumbnails(apps, schema_editor):
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0011_auto_20160303_1929'),
]

View File

@@ -128,7 +128,7 @@ def do_nothing(apps, schema_editor):
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0013_auto_20160325_2111'),
]

View File

@@ -15,7 +15,7 @@ def reverse_func(apps, schema_editor):
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0018_auto_20170715_1712'),
]

View File

@@ -12,7 +12,7 @@ def set_added_time_to_created_time(apps, schema_editor):
doc.save()
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0019_add_consumer_user'),
]