Last active
November 27, 2021 12:47
-
-
Save yosephbernandus/afb2dce710635e80b867f4d37e01bd53 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| from ayocasn.apps.categories.models import Subcategory | |
| question_migration = { | |
| 'Nasionalisme': 5, | |
| 'Bela Negara': 5, | |
| 'Integritas': 5, | |
| 'Pilar Negara - Bhinneka Tunggal Ika': 4, | |
| 'Pilar Negara - UUD 1945': 4, | |
| 'Pilar Negara - Pancasila': 4, | |
| 'Pilar Negara - NKRI': 3, | |
| 'Verbal - Analogi': 3, | |
| 'Verbal - Silogisme': 4, | |
| 'Verbal - Analitis': 4, | |
| 'Numerik - Perbandingan Kuantitatif': 3, | |
| 'Numerik - Berhitung': 4, | |
| 'Numerik - Deret Angka': 4, | |
| 'Numerik - Soal Cerita': 4, | |
| 'Figural - Analogi': 3, | |
| 'Figural - Ketidaksamaan': 3, | |
| 'Figural - Serial': 3, | |
| 'Pelayanan Publik': 8, | |
| 'Profesionalisme': 8, | |
| 'Teknologi Informasi dan Komunikasi': 8, | |
| 'Sosial Budaya': 7, | |
| 'Jejaring Kerja': 7, | |
| 'Anti Radikalisme': 7, | |
| } | |
| subcategories = Subcategory.objects.order_by('id') | |
| for subcateory in subcategories: | |
| if subcateory.name in question_migration: | |
| print(question_migration[subcateory.name]) | |
| subcateory.premium_questions_limit = question_migration[subcateory.name] | |
| subcateory.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment