blob: 892adfed09cbee50ec146daa89c70cc46d402451 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-24 15:02
from __future__ import unicode_literals
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('dispatch', '0007_invoice_paid'),
]
operations = [
migrations.AddField(
model_name='invoiceitem',
name='date',
field=models.DateField(default=django.utils.timezone.now),
preserve_default=False,
),
]
|