-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added content metadata tags for academy detail page
- Loading branch information
IrfanUddinAhmad
committed
Jan 8, 2024
1 parent
3f1fbe8
commit 5a2c97c
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
enterprise_catalog/apps/academy/migrations/0002_tag_content_metadata.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,19 @@ | ||
# Generated by Django 4.2.7 on 2024-01-08 20:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('catalog', '0037_alter_historicalcontentmetadata_options_and_more'), | ||
('academy', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='tag', | ||
name='content_metadata', | ||
field=models.ManyToManyField(related_name='tags', to='catalog.contentmetadata'), | ||
), | ||
] |
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