Files
zulip/zerver/migrations/0055_attachment_size.py
PhilSk 53f3d84af2 attachment: Add 'size' field tracking size of uploaded files.
This tracking will make it possible in the future to limit the total
size of uploads on a per-user or per-organization basis.

Fixes #3774.
2017-03-01 15:58:21 -08:00

21 lines
441 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-01 06:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0054_realm_icon'),
]
operations = [
migrations.AddField(
model_name='attachment',
name='size',
field=models.IntegerField(null=True),
),
]