mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 23:24:48 -03:30
The event_data field on event models, however, is getting an overridden version that retains the underlying text data type for the column, to avoid a heavy data migration on those tables. Also, certain of the larger tables are getting these fields with the NOT NULL constraint turned off, to avoid a long migration. Remove the django.utils.six monkey patch we did at the beginning of the upgrade.
12 lines
324 B
Python
12 lines
324 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [('conf', '0002_v310_copy_tower_settings')]
|
|
|
|
operations = [migrations.AlterField(model_name='setting', name='value', field=models.JSONField(null=True))]
|