mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
634 B
25 lines
634 B
# Generated by Django 3.2.14 on 2022-10-19 12:40
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assets', '0108_auto_20221019_1706'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='web',
|
|
name='script',
|
|
field=models.JSONField(blank=True, default=list, verbose_name='Script'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='historicalaccount',
|
|
name='version',
|
|
field=models.IntegerField(default=0, verbose_name='Version'),
|
|
),
|
|
]
|