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.
53 lines
1.8 KiB
53 lines
1.8 KiB
# Generated by Django 3.2.14 on 2022-11-02 12:17 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('assets', '0108_auto_20221027_1053'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
model_name='account', |
|
name='is_active', |
|
field=models.BooleanField(default=True, verbose_name='Is active'), |
|
), |
|
migrations.AddField( |
|
model_name='account', |
|
name='updated_by', |
|
field=models.CharField(blank=True, max_length=32, null=True, verbose_name='Updated by'), |
|
), |
|
migrations.AddField( |
|
model_name='accounttemplate', |
|
name='is_active', |
|
field=models.BooleanField(default=True, verbose_name='Is active'), |
|
), |
|
migrations.AddField( |
|
model_name='accounttemplate', |
|
name='updated_by', |
|
field=models.CharField(blank=True, max_length=32, null=True, verbose_name='Updated by'), |
|
), |
|
migrations.AddField( |
|
model_name='gateway', |
|
name='updated_by', |
|
field=models.CharField(blank=True, max_length=32, null=True, verbose_name='Updated by'), |
|
), |
|
migrations.AlterField( |
|
model_name='account', |
|
name='date_created', |
|
field=models.DateTimeField(auto_now_add=True, null=True, verbose_name='Date created'), |
|
), |
|
migrations.AlterField( |
|
model_name='accounttemplate', |
|
name='date_created', |
|
field=models.DateTimeField(auto_now_add=True, null=True, verbose_name='Date created'), |
|
), |
|
migrations.AlterField( |
|
model_name='gateway', |
|
name='date_created', |
|
field=models.DateTimeField(auto_now_add=True, null=True, verbose_name='Date created'), |
|
), |
|
]
|
|
|