Skip to content

Commit 8d84cd2

Browse files
committed
feat: System defined taxonomies subclasses
1 parent cdaeb03 commit 8d84cd2

File tree

8 files changed

+584
-517
lines changed

8 files changed

+584
-517
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Generated by Django 3.2.19 on 2023-07-19 20:28
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('oel_tagging', '0002_auto_20230718_2026'),
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name='SystemDefinedTaxonomy',
15+
fields=[
16+
],
17+
options={
18+
'proxy': True,
19+
'indexes': [],
20+
'constraints': [],
21+
},
22+
bases=('oel_tagging.taxonomy',),
23+
),
24+
migrations.CreateModel(
25+
name='LanguageTaxonomy',
26+
fields=[
27+
],
28+
options={
29+
'proxy': True,
30+
'indexes': [],
31+
'constraints': [],
32+
},
33+
bases=('oel_tagging.systemdefinedtaxonomy',),
34+
),
35+
migrations.CreateModel(
36+
name='ModelSystemDefinedTaxonomy',
37+
fields=[
38+
],
39+
options={
40+
'proxy': True,
41+
'indexes': [],
42+
'constraints': [],
43+
},
44+
bases=('oel_tagging.systemdefinedtaxonomy',),
45+
),
46+
migrations.CreateModel(
47+
name='UserSystemDefinedTaxonomy',
48+
fields=[
49+
],
50+
options={
51+
'proxy': True,
52+
'indexes': [],
53+
'constraints': [],
54+
},
55+
bases=('oel_tagging.modelsystemdefinedtaxonomy',),
56+
),
57+
]

0 commit comments

Comments
 (0)