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.
24 lines
674 B
24 lines
674 B
# Generated by Django 2.0.7 on 2018-08-07 03:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('terminal', '0010_auto_20180423_1140'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='command',
|
|
name='org_id',
|
|
field=models.CharField(blank=True, db_index=True, default='', max_length=36, verbose_name='Organization'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='session',
|
|
name='org_id',
|
|
field=models.CharField(blank=True, db_index=True, default='', max_length=36, verbose_name='Organization'),
|
|
),
|
|
]
|