forked from ScoDoc/ScoDoc
Assiduité : ajout permission "JustifValidate" par défaut (si AbsChange)
This commit is contained in:
parent
b7b5d08de0
commit
ac95ff9784
36
migrations/versions/60119446aab6_.py
Normal file
36
migrations/versions/60119446aab6_.py
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
"""justif_validate_permission
|
||||||
|
|
||||||
|
Revision ID: 60119446aab6
|
||||||
|
Revises: 07f37334727b
|
||||||
|
Create Date: 2024-06-26 16:20:12.283501
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = "60119446aab6"
|
||||||
|
down_revision = "07f37334727b"
|
||||||
|
branch_labels = None
|
||||||
|
depends_on = None
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
# Modification des permissions API
|
||||||
|
# AbsChange (1 << 13) = 8192
|
||||||
|
# JustifValidate (1 << 51 ) = 2251799813685248
|
||||||
|
op.execute(
|
||||||
|
"""
|
||||||
|
update role set permissions = permissions | 2251799813685248 where (permissions & 8192) <> 0;
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
|
# ### end Alembic commands ###
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user