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
Sometimes, there are enums in the schema that need to be ignored or which are controlled by other applications.
To address this, alembic has a feature to pass in include_name, where you can pass a function that determines whether change detection will consider the object for migration generation.
However, alembic-postgresql-enum does not use this function before calculating changes. If this were implemented, you could do something along the lines of:
Sometimes, there are
enum
s in the schema that need to be ignored or which are controlled by other applications.To address this, alembic has a feature to pass in
include_name
, where you can pass a function that determines whether change detection will consider the object for migration generation.However, alembic-postgresql-enum does not use this function before calculating changes. If this were implemented, you could do something along the lines of:
The text was updated successfully, but these errors were encountered: