jumpserver/apps/terminal/migrations/0036_auto_20210604_1124.py

19 lines
585 B
Python
Raw Normal View History

2021-06-04 03:26:52 +00:00
# Generated by Django 3.1.6 on 2021-06-04 03:24
2021-04-12 11:37:04 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2021-06-04 03:26:52 +00:00
('terminal', '0035_auto_20210517_1448'),
2021-04-12 11:37:04 +00:00
]
operations = [
migrations.AlterField(
model_name='replaystorage',
name='type',
field=models.CharField(choices=[('null', 'Null'), ('server', 'Server'), ('s3', 'S3'), ('ceph', 'Ceph'), ('swift', 'Swift'), ('oss', 'OSS'), ('azure', 'Azure'), ('obs', 'OBS')], default='server', max_length=16, verbose_name='Type'),
),
]