mirror of https://github.com/jumpserver/jumpserver
24 lines
654 B
Python
24 lines
654 B
Python
|
# Generated by Django 4.1.10 on 2023-07-28 02:01
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('terminal', '0063_auto_20230621_1133'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='applethost',
|
||
|
name='accounts_create_amount',
|
||
|
field=models.IntegerField(default=100, verbose_name='Accounts create amount'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='applethost',
|
||
|
name='auto_create_accounts',
|
||
|
field=models.BooleanField(default=True, verbose_name='Auto create accounts'),
|
||
|
),
|
||
|
]
|