diff --git a/migration/tables/content_item_categories.py b/migration/tables/content_item_categories.py index 8ba75e75..2380f4f2 100644 --- a/migration/tables/content_item_categories.py +++ b/migration/tables/content_item_categories.py @@ -16,7 +16,7 @@ def migrate(entry): 'slug': entry['slug'], # 'createdBy': entry['createdBy'], # 'createdAt': date_parse(entry['createdAt']), - 'title': entry['title'].lower(), + 'title': entry['title'], #.lower(), 'children': [], 'community' : Community.default_community.slug, 'body' : entry.get('description') diff --git a/migration/tables/tags.py b/migration/tables/tags.py index 7488d3ed..000766ab 100644 --- a/migration/tables/tags.py +++ b/migration/tables/tags.py @@ -23,7 +23,7 @@ def migrate(entry): 'slug': entry['slug'], # 'createdBy': entry['createdBy'], # 'createdAt': ts, - 'title': entry['title'].lower(), + 'title': entry['title'], # .lower(), 'children': [], 'community' : Community.default_community.slug, 'body' : entry.get('description')