22 lines
615 B
Python
22 lines
615 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 = [
|
|
('archive', '0003_auto_20161104_1726'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunSQL(
|
|
'ALTER TABLE "archive_file" ALTER COLUMN "info" TYPE jsonb USING "info"::text::jsonb'
|
|
),
|
|
migrations.RunSQL(
|
|
'ALTER TABLE "archive_stream" ALTER COLUMN "info" TYPE jsonb USING "info"::text::jsonb'
|
|
),
|
|
]
|