aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/migrations/0003_invoice_payment_identifer.py
blob: 21130a7595c51cea0553f6bbfae0ed0a3b65a80e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-11-09 20:53
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('dispatch', '0002_auto_20171107_1912'),
    ]

    operations = [
        migrations.AddField(
            model_name='invoice',
            name='payment_identifer',
            field=models.CharField(default='', max_length=256),
        ),
    ]