mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-23 20:39:26 +00:00
perf: 修改 migrations
This commit is contained in:
@@ -4,7 +4,6 @@ from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('terminal', '0061_applet_can_concurrent'),
|
||||
]
|
||||
@@ -13,6 +12,7 @@ class Migration(migrations.Migration):
|
||||
migrations.AddField(
|
||||
model_name='applet',
|
||||
name='edition',
|
||||
field=models.CharField(default='community', max_length=128, verbose_name='Edition'),
|
||||
field=models.CharField(choices=[('community', 'Community'), ('enterprise', 'Enterprise')],
|
||||
default='community', max_length=128, verbose_name='Edition'),
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user