mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 15:14:45 -03:30
fix migration problem from 3.1.1
This commit is contained in:
@@ -12,7 +12,6 @@ class Migration(migrations.Migration):
|
|||||||
|
|
||||||
replaces = [
|
replaces = [
|
||||||
(b'main', '0035_v310_remove_tower_settings'),
|
(b'main', '0035_v310_remove_tower_settings'),
|
||||||
(b'main', '0036_v311_insights'),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
|||||||
28
awx/main/migrations/0005a_squashed_v310_v313_updates.py
Normal file
28
awx/main/migrations/0005a_squashed_v310_v313_updates.py
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('main', '0005_squashed_v310_v313_updates'),
|
||||||
|
]
|
||||||
|
|
||||||
|
replaces = [
|
||||||
|
(b'main', '0036_v311_insights'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='project',
|
||||||
|
name='scm_type',
|
||||||
|
field=models.CharField(default=b'', choices=[(b'', 'Manual'), (b'git', 'Git'), (b'hg', 'Mercurial'), (b'svn', 'Subversion'), (b'insights', 'Red Hat Insights')], max_length=8, blank=True, help_text='Specifies the source control system used to store the project.', verbose_name='SCM Type'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='projectupdate',
|
||||||
|
name='scm_type',
|
||||||
|
field=models.CharField(default=b'', choices=[(b'', 'Manual'), (b'git', 'Git'), (b'hg', 'Mercurial'), (b'svn', 'Subversion'), (b'insights', 'Red Hat Insights')], max_length=8, blank=True, help_text='Specifies the source control system used to store the project.', verbose_name='SCM Type'),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -7,7 +7,7 @@ from django.db import migrations, models
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('main', '0005_squashed_v310_v313_updates'),
|
('main', '0005a_squashed_v310_v313_updates'),
|
||||||
]
|
]
|
||||||
|
|
||||||
replaces = [
|
replaces = [
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ from awx.main.models import Host
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('main', '0005a_squashed_v310_v313_updates'),
|
('main', '0005b_squashed_v310_v313_updates'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
|||||||
Reference in New Issue
Block a user