12345678910111213141516171819202122 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.2 on 2017-07-06 18:56
- from __future__ import unicode_literals
- from django.db import migrations, models
- import django.utils.timezone
- class Migration(migrations.Migration):
- dependencies = [
- ('banking', '0006_auto_20170705_1825'),
- ]
- operations = [
- migrations.AddField(
- model_name='paymentupdate',
- name='created',
- field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
- preserve_default=False,
- ),
- ]
|