mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 14:32:25 +01:00
26 lines
484 B
Python
26 lines
484 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 1af840af0209
|
||
|
Revises: 725ff70ea316
|
||
|
Create Date: 2021-08-16 17:17:12.060257
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
from sqlalchemy.dialects import postgresql
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '1af840af0209'
|
||
|
down_revision = '725ff70ea316'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
op.execute("COMMIT")
|
||
|
op.execute("ALTER TYPE userrank ADD VALUE 'APPROVER' BEFORE 'EDITOR'")
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
pass
|