Coverage for apis_core/apis_relations/migrations/0005_alter_property_obj_class_alter_property_subj_class.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-16 07:42 +0000

1# Generated by Django 4.2.10 on 2024-02-26 13:20 

2 

3from django.db import migrations, models 

4 

5 

6class Migration(migrations.Migration): 

7 dependencies = [ 

8 ("contenttypes", "0002_remove_content_type_name"), 

9 ("apis_relations", "0004_auto_20230124_1201"), 

10 ] 

11 

12 operations = [ 

13 migrations.AlterField( 

14 model_name="property", 

15 name="obj_class", 

16 field=models.ManyToManyField( 

17 related_name="property_set_obj", to="contenttypes.contenttype" 

18 ), 

19 ), 

20 migrations.AlterField( 

21 model_name="property", 

22 name="subj_class", 

23 field=models.ManyToManyField( 

24 related_name="property_set_subj", to="contenttypes.contenttype" 

25 ), 

26 ), 

27 ]