blob: ccd0f737f230a7634db6ec11060b5495e62fdfe9 (
plain)
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.9 on 2016-02-10 08:49
from __future__ import unicode_literals
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('income', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='gig',
name='due_date',
field=models.DateField(default=django.utils.timezone.now),
),
]
|