Files
zulip/zilencer/migrations/0001_initial.py
Anders Kaseorg c734bbd95d python: Modernize legacy Python 2 syntax with pyupgrade.
Generated by `pyupgrade --py3-plus --keep-percent-format` on all our
Python code except `zthumbor` and `zulip-ec2-configure-interfaces`,
followed by manual indentation fixes.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-09 16:43:22 -07:00

26 lines
845 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='Deployment',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('is_active', models.BooleanField(default=True)),
('api_key', models.CharField(max_length=32, null=True)),
('base_api_url', models.CharField(max_length=128)),
('base_site_url', models.CharField(max_length=128)),
('realms', models.ManyToManyField(related_name='_deployments', to='zerver.Realm')),
],
options={
},
bases=(models.Model,),
),
]