mirror of https://github.com/jumpserver/jumpserver
31 lines
1.4 KiB
Python
31 lines
1.4 KiB
Python
|
# Generated by Django 4.1.10 on 2023-08-01 09:12
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('accounts', '0013_account_backup_recipients'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='VirtualAccount',
|
||
|
fields=[
|
||
|
('created_by', models.CharField(blank=True, max_length=128, null=True, verbose_name='Created by')),
|
||
|
('updated_by', models.CharField(blank=True, max_length=128, 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)),
|
||
|
('org_id', models.CharField(blank=True, db_index=True, default='', max_length=36, verbose_name='Organization')),
|
||
|
('alias', models.CharField(choices=[('@INPUT', 'Manual input'), ('@USER', 'Dynamic user'), ('@ANON', 'Anonymous account')], max_length=128, verbose_name='Alias')),
|
||
|
('secret_from_login', models.BooleanField(default=None, null=True, verbose_name='Secret from login')),
|
||
|
],
|
||
|
options={
|
||
|
'unique_together': {('alias', 'org_id')},
|
||
|
},
|
||
|
),
|
||
|
]
|