misc: fix package path in migration (#39544)

This commit is contained in:
Benjamin Dauvergne 2020-04-15 10:38:40 +02:00
parent da8822e821
commit 8cd865d3f9
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ from __future__ import unicode_literals
from django.db import migrations, models
import jsonfield.fields
import passerelle.apps.atreal_openads.models
import atreal_openads.models
class Migration(migrations.Migration):
@ -43,7 +43,7 @@ class Migration(migrations.Migration):
('file_hash', models.CharField(blank=True, default=b'', max_length=100)),
('orig_filename', models.CharField(blank=True, default=b'', max_length=100)),
('content_type', models.CharField(blank=True, default=b'', max_length=100)),
('upload_file', models.FileField(null=True, upload_to=passerelle.apps.atreal_openads.models.get_upload_path)),
('upload_file', models.FileField(null=True, upload_to=atreal_openads.models.get_upload_path)),
('upload_status', models.CharField(blank=True, default=b'', max_length=10)),
('upload_msg', models.CharField(blank=True, default=b'', max_length=255)),
('last_update_datetime', models.DateTimeField(auto_now=True)),