Skip to content

Commit

Permalink
feat: System defined taxonomies subclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChV committed Jul 19, 2023
1 parent cdaeb03 commit 8d84cd2
Show file tree
Hide file tree
Showing 8 changed files with 584 additions and 517 deletions.
57 changes: 57 additions & 0 deletions openedx_tagging/core/tagging/migrations/0003_system_defined.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Generated by Django 3.2.19 on 2023-07-19 20:28

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('oel_tagging', '0002_auto_20230718_2026'),
]

operations = [
migrations.CreateModel(
name='SystemDefinedTaxonomy',
fields=[
],
options={
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('oel_tagging.taxonomy',),
),
migrations.CreateModel(
name='LanguageTaxonomy',
fields=[
],
options={
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('oel_tagging.systemdefinedtaxonomy',),
),
migrations.CreateModel(
name='ModelSystemDefinedTaxonomy',
fields=[
],
options={
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('oel_tagging.systemdefinedtaxonomy',),
),
migrations.CreateModel(
name='UserSystemDefinedTaxonomy',
fields=[
],
options={
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('oel_tagging.modelsystemdefinedtaxonomy',),
),
]
Loading

0 comments on commit 8d84cd2

Please sign in to comment.