Created
March 28, 2025 19:36
-
-
Save victoraguilarc/ee880f327725d421e4a0d8e51a31073c to your computer and use it in GitHub Desktop.
Multiselect en el modelo
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
strategies = ArrayField( | |
models.CharField( | |
choices=NotificationStrategy.choices(), | |
default=NotificationStrategy.EMAIL.value, | |
max_length=25, | |
), | |
blank=True, | |
verbose_name='Strategies', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment