Source code for apis_core.apis_metainfo.migrations.0009_remove_collection_collection_type

# Generated by Django 4.2.8 on 2023-12-22 07:29

from django.db import migrations


[docs] class Migration(migrations.Migration): dependencies = [ ("apis_metainfo", "0008_alter_rootobject_self_contenttype"), ] operations = [ migrations.RemoveField( model_name="collection", name="collection_type", ), ]