Adds cloud_id and claimed_until columns to the application_roles table so that rows can be locked when they're being processed and updated with relevant Azure information when processing is finished. Since the claimed_until column is now common to a few different models, I've also moved it to a mixin.
8 lines
267 B
Python
8 lines
267 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
|
|
from .claimable import ClaimableMixin
|