Mercurial > public > sg101
comparison comments/migrations/0002_auto_20151214_1952.py @ 1028:5ba2508939f7
Django 1.8 changes; first batch.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 15 Dec 2015 21:01:07 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1027:cd4db27c90e3 | 1028:5ba2508939f7 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 from __future__ import unicode_literals | |
3 | |
4 from django.db import migrations, models | |
5 | |
6 | |
7 class Migration(migrations.Migration): | |
8 | |
9 dependencies = [ | |
10 ('comments', '0001_initial'), | |
11 ] | |
12 | |
13 operations = [ | |
14 migrations.AlterField( | |
15 model_name='comment', | |
16 name='ip_address', | |
17 field=models.GenericIPAddressField(verbose_name=b'IP Address'), | |
18 ), | |
19 ] |