mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-21 15:31:48 -05:00
17 lines
349 B
Python
17 lines
349 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from awx.conf.migrations import _reencrypt
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('conf', '0003_v310_JSONField_changes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(_reencrypt.replace_aesecb_fernet),
|
|
]
|