mirror of https://github.com/jumpserver/jumpserver
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
![]() |
# Generated by Django 3.2.14 on 2022-08-11 05:58
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('assets', '0105_auto_20220810_1449'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='AccountTemplate',
|
||
|
fields=[
|
||
|
('created_by', models.CharField(blank=True, max_length=32, null=True, verbose_name='Created by')),
|
||
|
('updated_by', models.CharField(blank=True, max_length=32, null=True, verbose_name='Updated by')),
|
||
|
('date_created', models.DateTimeField(auto_now_add=True, null=True, verbose_name='Date created')),
|
||
|
('date_updated', models.DateTimeField(auto_now=True, verbose_name='Date updated')),
|
||
|
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
|
||
|
],
|
||
|
options={
|
||
|
'abstract': False,
|
||
|
},
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='account',
|
||
|
name='protocol',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='historicalaccount',
|
||
|
name='protocol',
|
||
|
),
|
||
|
]
|