0007_paymentupdate_created.py 565 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.2 on 2017-07-06 18:56
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. import django.utils.timezone
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('banking', '0006_auto_20170705_1825'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='paymentupdate',
  13. name='created',
  14. field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
  15. preserve_default=False,
  16. ),
  17. ]