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
770 B
25 lines
770 B
# Generated by Django 2.1.7 on 2019-04-12 07:00
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('perms', '0002_auto_20171228_0025_squashed_0009_auto_20180903_1132'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Action',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
|
|
('name', models.CharField(choices=[('all', 'All'), ('connect', 'Connect'), ('upload_file', 'Upload file'), ('download_file', 'Download file')], max_length=128, unique=True, verbose_name='Name')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Action',
|
|
},
|
|
),
|
|
]
|