mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* feat: api tokens (vibe) * self-review * remove token terminology + pr comments (vibe) * return email_verified --------- Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""add user api keys
|
|
|
|
Revision ID: 9e3f7b2a4c8e
|
|
Revises: dc035ff72fd5
|
|
Create Date: 2025-10-17 00:00:00.000000
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "9e3f7b2a4c8e"
|
|
down_revision: Union[str, None] = "dc035ff72fd5"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.create_table(
|
|
"user_api_key",
|
|
sa.Column("id", sa.String(), nullable=False),
|
|
sa.Column("user_id", sa.String(), nullable=False),
|
|
sa.Column("key_hash", sa.String(), nullable=False),
|
|
sa.Column("name", sa.String(), nullable=True),
|
|
sa.Column("created_at", sa.DateTime(timezone=True), nullable=False),
|
|
sa.PrimaryKeyConstraint("id"),
|
|
)
|
|
|
|
with op.batch_alter_table("user_api_key", schema=None) as batch_op:
|
|
batch_op.create_index("idx_user_api_key_hash", ["key_hash"], unique=True)
|
|
batch_op.create_index("idx_user_api_key_user_id", ["user_id"], unique=False)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_table("user_api_key")
|