upload: Add a quota field to Realm.

This commit is contained in:
Vishnu Ks
2017-12-21 04:03:17 +05:30
committed by Greg Price
parent 035d3c5e97
commit fe787c617c
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-01-24 20:24
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0136_remove_userprofile_quota'),
]
operations = [
migrations.AddField(
model_name='realm',
name='upload_quota_gb',
field=models.IntegerField(null=True),
),
]