拍爱

0028_auto_20161220_1815.py 836B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('group', '0027_groupuserinfo_authority'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='groupinfo',
  11. name='attentions_path',
  12. field=models.CharField(help_text='\u6ce8\u610f\u4e8b\u9879\u7167\u7247\u5b58\u653e\u8def\u5f84', max_length=255, null=True, verbose_name='attentions_path', blank=True),
  13. ),
  14. migrations.AddField(
  15. model_name='groupinfo',
  16. name='schedules_path',
  17. field=models.CharField(help_text='\u884c\u7a0b\u5b89\u6392\u7167\u7247\u5b58\u653e\u8def\u5f84', max_length=255, null=True, verbose_name='schedules_path', blank=True),
  18. ),
  19. ]