This repository has been archived on 2024-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
passerelle-reunion-fsn/passerelle_reunion_fsn/migrations/0005_text_to_jsonb.py

18 lines
383 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations
from passerelle.utils.db import EnsureJsonbType
class Migration(migrations.Migration):
dependencies = [
('passerelle_reunion_fsn', '0004_wcs_batches'),
]
operations = [
EnsureJsonbType(model_name='FSNReunionConnector', field_name='wcs_options'),
]