1234567891011121314151617181920 |
- from __future__ import unicode_literals
- from django.db import migrations
- class Migration(migrations.Migration):
- dependencies = [
- ('group', '0036_groupphotoinfo_has_watermark'),
- ]
- operations = [
- migrations.AlterUniqueTogether(
- name='groupinfo',
- unique_together=set([('session_id', 'group_from')]),
- ),
- ]
|