1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-18 16:02
from __future__ import unicode_literals
import dispatch.models
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dispatch', '0001_initial'),
]
operations = [
migrations.RemoveField(
model_name='paperwork',
name='filename',
),
migrations.AddField(
model_name='load',
name='delivered_to',
field=models.CharField(default='', max_length=256),
),
migrations.AlterField(
model_name='paperwork',
name='document',
field=models.FileField(upload_to=dispatch.models.paperwork_user_directory_path),
),
]
|