123456789101112131415161718192021 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.2 on 2017-06-12 23:11
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('services', '0032_tunnel'),
- ]
- operations = [
- migrations.AddField(
- model_name='tunnel',
- name='created',
- field=models.DateTimeField(auto_now_add=True, default=None),
- preserve_default=False,
- ),
- ]
|