mirror of
https://github.com/Cccc-owo/CheckInApp.git
synced 2026-06-17 05:56:29 +00:00
3ab845798d
Add a lightweight migration runner with schema_migrations tracking, run pending migrations during backend startup before the scheduler, and keep a manual backend-migrate entrypoint. The change also moves the existing lockout and task-thread-ID schema steps into shared migration modules, updates docs, and archives the OpenSpec change.
30 lines
957 B
Python
30 lines
957 B
Python
from __future__ import annotations
|
|
|
|
from sqlalchemy.engine import Connection
|
|
from sqlalchemy import text
|
|
|
|
|
|
def _table_columns(conn: Connection, table_name: str) -> set[str]:
|
|
rows = conn.execute(text(f"PRAGMA table_info({table_name})")).fetchall()
|
|
return {str(row[1]) for row in rows}
|
|
|
|
|
|
def apply(conn: Connection) -> None:
|
|
columns = _table_columns(conn, "users")
|
|
|
|
if "failed_login_attempts" not in columns:
|
|
conn.execute(
|
|
text("ALTER TABLE users ADD COLUMN failed_login_attempts INTEGER DEFAULT 0 NOT NULL")
|
|
)
|
|
conn.commit()
|
|
|
|
columns = _table_columns(conn, "users")
|
|
if "locked_until" not in columns:
|
|
conn.execute(text("ALTER TABLE users ADD COLUMN locked_until DATETIME"))
|
|
conn.commit()
|
|
|
|
columns = _table_columns(conn, "users")
|
|
if "last_failed_login" not in columns:
|
|
conn.execute(text("ALTER TABLE users ADD COLUMN last_failed_login DATETIME"))
|
|
conn.commit()
|