blob: 04668ff8241d76158db9c32e8db7281f804ba3d9 (
plain) (
blame)
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
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-23 20:49
from __future__ import unicode_literals
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('dispatch', '0005_invoice_invoice_id'),
]
operations = [
migrations.AddField(
model_name='invoice',
name='due_date',
field=models.DateField(default=django.utils.timezone.now),
preserve_default=False,
),
migrations.AddField(
model_name='invoice',
name='invoice_date',
field=models.DateField(default=django.utils.timezone.now),
preserve_default=False,
),
]
|