Source code for aiida.backends.djsite.db.migrations.0033_replace_text_field_with_json_field

# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
# pylint: disable=invalid-name
"""Replace use of text fields to store JSON data with builtin JSONField."""

# Remove when https://github.com/PyCQA/pylint/issues/1931 is fixed
# pylint: disable=no-name-in-module,import-error,no-member
import django.contrib.postgres.fields.jsonb
from django.db import migrations

from aiida.backends.djsite.db.migrations import upgrade_schema_version

REVISION = '1.0.33'
DOWN_REVISION = '1.0.32'


[docs]class Migration(migrations.Migration): """Replace use of text fields to store JSON data with builtin JSONField.""" dependencies = [ ('db', '0032_remove_legacy_workflows'), ] operations = [ migrations.AlterField( model_name='dbauthinfo', name='auth_params', field=django.contrib.postgres.fields.jsonb.JSONField(default=dict), ), migrations.AlterField( model_name='dbauthinfo', name='metadata', field=django.contrib.postgres.fields.jsonb.JSONField(default=dict), ), migrations.AlterField( model_name='dbcomputer', name='metadata', field=django.contrib.postgres.fields.jsonb.JSONField(default=dict), ), migrations.AlterField( model_name='dbcomputer', name='transport_params', field=django.contrib.postgres.fields.jsonb.JSONField(default=dict), ), migrations.AlterField( model_name='dblog', name='metadata', field=django.contrib.postgres.fields.jsonb.JSONField(default=dict), ), upgrade_schema_version(REVISION, DOWN_REVISION) ]