Files
zulip/zilencer/migrations/0005_remotepushdevicetoken_fix_uniqueness.py
Tim Abbott 8e7ce7cc79 python: Sort migrations/management command imports with isort.
This is a preparatory commit for using isort for sorting all of our
imports, merging changes to files where we can easily review the
changes as something we're happy with.

These are also files with relatively little active development, which
means we don't expect much merge conflict risk from these changes.
2020-01-14 13:07:47 -08:00

30 lines
812 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-19 04:23
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zilencer', '0004_remove_deployment_model'),
]
operations = [
migrations.AlterField(
model_name='remotepushdevicetoken',
name='token',
field=models.CharField(db_index=True, max_length=4096),
),
migrations.AlterField(
model_name='remotepushdevicetoken',
name='user_id',
field=models.BigIntegerField(db_index=True),
),
migrations.AlterUniqueTogether(
name='remotepushdevicetoken',
unique_together=set([('server', 'token')]),
),
]