增加小组管理功能

This commit is contained in:
virusdefender
2015-08-11 19:14:41 +08:00
parent eda566c1a2
commit 6284638b49
5 changed files with 139 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('group', '0002_auto_20150811_1456'),
]
operations = [
migrations.AlterField(
model_name='group',
name='join_group_setting',
field=models.IntegerField(default=1),
),
]