Mercurial > public > sg101
comparison forums/migrations/0002_auto_20151214_2000.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 ('forums', '0001_initial'), | |
11 ] | |
12 | |
13 operations = [ | |
14 migrations.AlterField( | |
15 model_name='category', | |
16 name='groups', | |
17 field=models.ManyToManyField(help_text=b'If groups are assigned to this category, only members of those groups can view this category.', to='auth.Group', blank=True), | |
18 ), | |
19 migrations.AlterField( | |
20 model_name='forum', | |
21 name='moderators', | |
22 field=models.ManyToManyField(to='auth.Group', blank=True), | |
23 ), | |
24 migrations.AlterField( | |
25 model_name='post', | |
26 name='user_ip', | |
27 field=models.GenericIPAddressField(default=b'', null=True, blank=True), | |
28 ), | |
29 ] |