mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
Previously this was hardcoded for a single customer. (imported from commit a6b7095050aa10cef976541505d9b09a35453f48)
20 lines
415 B
Python
20 lines
415 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0003_custom_indexes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userprofile',
|
|
name='left_side_userlist',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|