22 lines
479 B
Python
22 lines
479 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10 on 2017-04-10 10:09
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import datetime
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('refunding', '0003_auto_20170410_1208'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='refund',
|
||
|
name='date',
|
||
|
field=models.DateField(default=datetime.date.today),
|
||
|
),
|
||
|
]
|