You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EnumField will automatically trigger migrations when the underlying enum changes in such a way that the database needs alterations (mostly column size overflows).
Some users may want to more explicitly specify the enum type - say use EnumPositiveSmallIntegerField directly instead of relying on EnumField to resolve it.
EnumPositiveSmallIntegerField should still update check constraints automatically when necessary.
This may just involve adding these types to __all__ and documenting this usage...
The text was updated successfully, but these errors were encountered:
EnumField
will automatically trigger migrations when the underlying enum changes in such a way that the database needs alterations (mostly column size overflows).Some users may want to more explicitly specify the enum type - say use
EnumPositiveSmallIntegerField
directly instead of relying onEnumField
to resolve it.EnumPositiveSmallIntegerField
should still update check constraints automatically when necessary.This may just involve adding these types to
__all__
and documenting this usage...The text was updated successfully, but these errors were encountered: