blob: 559cd5a85547f4491a4b1b4a2d41e91da6e6d294 (
plain)
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
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-12-13 10:38
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('income', '0002_gig_due_date'),
]
operations = [
migrations.AlterField(
model_name='gig',
name='due_date',
field=models.DateField(blank=True, null=True),
),
migrations.AlterField(
model_name='gig',
name='pub_date',
field=models.DateTimeField(blank=True, null=True),
),
]
|