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.
23 lines
487 B
23 lines
487 B
# Generated by Django 2.2.7 on 2020-01-08 08:59
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ops', '0011_auto_20200106_1534'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='task',
|
|
old_name='created_by',
|
|
new_name='org_id',
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name='task',
|
|
unique_together={('name', 'org_id')},
|
|
),
|
|
]
|