mirror of https://github.com/zulip/zulip.git
24 lines
612 B
Python
24 lines
612 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.20 on 2019-04-23 20:17
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zilencer', '0016_remote_counts'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterIndexTogether(
|
||
|
name='remoteinstallationcount',
|
||
|
index_together=set([('server', 'remote_id')]),
|
||
|
),
|
||
|
migrations.AlterIndexTogether(
|
||
|
name='remoterealmcount',
|
||
|
index_together=set([('property', 'end_time'), ('server', 'remote_id')]),
|
||
|
),
|
||
|
]
|