You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nothing to undo here: the deleted Languages taxonomy and the subclass
54
+
information cannot be restored, because the subclasses no longer exist.
55
+
The ``read_only`` column is dropped by the reversal of the AddField
56
+
operation.
57
+
"""
58
+
59
+
60
+
classMigration(migrations.Migration):
61
+
62
+
dependencies= [
63
+
('oel_tagging', '0020_tag_depth_and_lineage'),
64
+
]
65
+
66
+
operations= [
67
+
migrations.DeleteModel(
68
+
name='LanguageTaxonomy',
69
+
),
70
+
migrations.DeleteModel(
71
+
name='ModelSystemDefinedTaxonomy',
72
+
),
73
+
migrations.DeleteModel(
74
+
name='SystemDefinedTaxonomy',
75
+
),
76
+
migrations.DeleteModel(
77
+
name='UserSystemDefinedTaxonomy',
78
+
),
79
+
migrations.AddField(
80
+
model_name='taxonomy',
81
+
name='read_only',
82
+
field=models.BooleanField(default=False, help_text='Indicates that the tags and metadata for this taxonomy are maintained by the system or an external integration; taxonomy admins will not be permitted to add, edit, or delete its tags.'),
0 commit comments