1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11 on 2017-05-25 14:22
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('services', '0024_auto_20170517_2349'),
- ]
- operations = [
- migrations.AddField(
- model_name='ipresource',
- name='notes',
- field=models.TextField(blank=True, default=''),
- ),
- ]
|