mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
This makes it possible to create much prettier login pages. Further work on styling may be necessary.
21 lines
457 B
Python
21 lines
457 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-05-11 20:27
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0079_remove_old_scheduled_jobs'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='realm',
|
|
name='description',
|
|
field=models.TextField(null=True),
|
|
),
|
|
]
|