We don't know yet how useful the job failue tables will be, and maintaining multiple failure tables--one for every entity involved in CSP provisioning--is burdensome. This collapses them all into a single table that track the entity type (environment, portfolio, etc.) and the entity ID. That way we can construct queries when needed to find task results.
7 lines
229 B
Python
7 lines
229 B
Python
from .timestamps import TimestampsMixin
|
|
from .auditable import AuditableMixin
|
|
from .permissions import PermissionsMixin
|
|
from .deletable import DeletableMixin
|
|
from .invites import InvitesMixin
|
|
from .state_machines import FSMMixin
|