0033_tunnel_created.py 497 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.2 on 2017-06-12 23:11
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('services', '0032_tunnel'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='tunnel',
  12. name='created',
  13. field=models.DateTimeField(auto_now_add=True, default=None),
  14. preserve_default=False,
  15. ),
  16. ]