19 lines
483 B
Python
19 lines
483 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.4 on 2018-06-19 17:23
|
|
from __future__ import unicode_literals
|
|
|
|
import django.contrib.postgres.fields.jsonb
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('document', '0010_auto_20170126_1528'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunSQL(
|
|
'ALTER TABLE "document_document" ALTER COLUMN "data" TYPE jsonb USING "data"::text::jsonb'
|
|
),
|
|
]
|