blob: b671b879e766c7fd5c3da43bbb9adc60c1a278b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-09-13 17:05
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dispatch', '0007_auto_20170715_2105'),
]
operations = [
migrations.AddField(
model_name='load',
name='load_number',
field=models.CharField(default="", max_length=64),
preserve_default=False,
),
]
|