-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Simplify Content Tagging Models (#33378)
* feat: Simplify tagging - remove Content*Taxonomy models * chore: bump version of openedx-learning * chore: fix lint errors
- Loading branch information
1 parent
6710af6
commit 0a6eb51
Showing
17 changed files
with
173 additions
and
365 deletions.
There are no files selected for viewing
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
22 changes: 22 additions & 0 deletions
22
openedx/core/djangoapps/content_tagging/migrations/0006_simplify_models.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,22 @@ | ||
# Generated by Django 3.2.21 on 2023-09-29 23:32 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('content_tagging', '0005_auto_20230830_1517'), | ||
] | ||
|
||
operations = [ | ||
migrations.DeleteModel( | ||
name='ContentAuthorTaxonomy', | ||
), | ||
migrations.DeleteModel( | ||
name='ContentLanguageTaxonomy', | ||
), | ||
migrations.DeleteModel( | ||
name='ContentTaxonomy', | ||
), | ||
] |
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
27 changes: 0 additions & 27 deletions
27
openedx/core/djangoapps/content_tagging/models/system_defined.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.