mirror of https://github.com/zulip/zulip.git
20 lines
479 B
Python
20 lines
479 B
Python
|
# Generated by Django 2.2.10 on 2020-03-15 17:25
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zerver', '0269_gitlab_auth'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='huddle',
|
||
|
name='recipient',
|
||
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='zerver.Recipient'),
|
||
|
),
|
||
|
]
|