mirror of
https://github.com/ansible/awx.git
synced 2026-04-10 04:29:21 -02:30
delay auth app migrations until 3.3
This commit is contained in:
@@ -13,6 +13,13 @@ class Migration(migrations.Migration):
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
('main', '0012_v322_update_cred_types'),
|
('main', '0012_v322_update_cred_types'),
|
||||||
]
|
]
|
||||||
|
run_before = [
|
||||||
|
# Django-vendored migrations will make reference to settings
|
||||||
|
# this migration was introduced in Django 1.11 / Tower 3.3 upgrade
|
||||||
|
# migration main-0009 changed the setting model and is not backward compatible,
|
||||||
|
# so we assure that at least all of Tower 3.2 migrations are finished before running it
|
||||||
|
('auth', '0008_alter_user_username_max_length')
|
||||||
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
|
|||||||
Reference in New Issue
Block a user