mirror of
https://github.com/ansible/awx.git
synced 2026-02-28 16:28:43 -03:30
24 lines
505 B
Python
24 lines
505 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0034_v310_add_workflows'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='instance',
|
|
name='primary',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='instance',
|
|
name='uuid',
|
|
field=models.CharField(max_length=40),
|
|
),
|
|
]
|