forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
74 additions
and
6 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
...axonomy_contentlanguagetaxonomy_contentorganizationtaxonomy_organizarionsystemdefinedt.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Generated by Django 3.2.20 on 2023-07-21 21:50 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('oel_tagging', '0003_auto_20230721_1238'), | ||
('content_tagging', '0002_system_defined_taxonomies'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='ContentAuthorTaxonomy', | ||
fields=[ | ||
], | ||
options={ | ||
'proxy': True, | ||
'indexes': [], | ||
'constraints': [], | ||
}, | ||
bases=('content_tagging.contenttaxonomy', 'oel_tagging.usersystemdefinedtaxonomy'), | ||
), | ||
migrations.CreateModel( | ||
name='ContentLanguageTaxonomy', | ||
fields=[ | ||
], | ||
options={ | ||
'proxy': True, | ||
'indexes': [], | ||
'constraints': [], | ||
}, | ||
bases=('content_tagging.contenttaxonomy', 'oel_tagging.languagetaxonomy'), | ||
), | ||
migrations.CreateModel( | ||
name='OrganizarionSystemDefinedTaxonomy', | ||
fields=[ | ||
], | ||
options={ | ||
'proxy': True, | ||
'indexes': [], | ||
'constraints': [], | ||
}, | ||
bases=('oel_tagging.modelsystemdefinedtaxonomy',), | ||
), | ||
migrations.CreateModel( | ||
name='OrganizationModelObjectTag', | ||
fields=[ | ||
], | ||
options={ | ||
'proxy': True, | ||
'indexes': [], | ||
'constraints': [], | ||
}, | ||
bases=('oel_tagging.modelobjecttag',), | ||
), | ||
migrations.CreateModel( | ||
name='ContentOrganizationTaxonomy', | ||
fields=[ | ||
], | ||
options={ | ||
'proxy': True, | ||
'indexes': [], | ||
'constraints': [], | ||
}, | ||
bases=('content_tagging.contenttaxonomy', 'content_tagging.organizarionsystemdefinedtaxonomy'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
""" | ||
Content Tagging and System defined models | ||
""" | ||
from .base import ( | ||
TaxonomyOrg, | ||
ContentTag, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters