727d86614e
P0 (7): Auth-bypass removed, migrations fixed, plugin-upload disabled, RLS FORCE+WITH CHECK, plugin double-registration fixed, persistent volume, domain removed P1 (11): User/tenant model, Redis centralized, worker separated, transactional outbox, XSS fixed, DMS chunked streaming, permissions unified, password reset, metrics secured, config/docs fixed, cross-tenant FK P2 (4): Contact model normalized, cross-imports reduced 94%, commands+state machines for contacts/dms/mail/calendar, SPA path-traversal 8 new migrations, 99 unit tests, 13 commands, 8 contracts, 72 files changed
47 lines
2.1 KiB
Python
47 lines
2.1 KiB
Python
"""Create user_preferences table for per-user UI settings.
|
|
|
|
Revision ID: 0028
|
|
Revises: 0027_unify_company_to_contact
|
|
Create Date: 2026-07-23
|
|
|
|
Changes:
|
|
- Create user_preferences table with tenant_id, user_id, key, value (JSONB)
|
|
- Unique constraint on (tenant_id, user_id, key)
|
|
- Indexes on tenant_id+user_id and user_id
|
|
- tenant_id column (required by TenantMixin / RLS)
|
|
- created_at, updated_at, deleted_at columns (TimestampMixin + SoftDeleteMixin)
|
|
"""
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects.postgresql import JSONB, UUID as PGUUID
|
|
|
|
|
|
revision = "0028_user_preferences"
|
|
down_revision = "0028_rls_force"
|
|
|
|
|
|
def upgrade():
|
|
op.create_table(
|
|
"user_preferences",
|
|
sa.Column("id", PGUUID(as_uuid=True), primary_key=True, server_default=sa.text("gen_random_uuid()")),
|
|
sa.Column("tenant_id", PGUUID(as_uuid=True), sa.ForeignKey("tenants.id", ondelete="CASCADE"), nullable=False),
|
|
sa.Column("user_id", PGUUID(as_uuid=True), sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False),
|
|
sa.Column("key", sa.String(100), nullable=False),
|
|
sa.Column("value", JSONB, nullable=False, server_default=sa.text("'{}'::jsonb")),
|
|
sa.Column("created_at", sa.DateTime(timezone=True), nullable=False, server_default=sa.func.now()),
|
|
sa.Column("updated_at", sa.DateTime(timezone=True), nullable=False, server_default=sa.func.now()),
|
|
sa.Column("deleted_at", sa.DateTime(timezone=True), nullable=True),
|
|
sa.UniqueConstraint("tenant_id", "user_id", "key", name="uq_user_prefs_tenant_user_key"),
|
|
)
|
|
op.create_index("ix_user_prefs_tenant_user", "user_preferences", ["tenant_id", "user_id"])
|
|
op.create_index("ix_user_prefs_user_id", "user_preferences", ["user_id"])
|
|
op.create_index("ix_user_prefs_tenant_id", "user_preferences", ["tenant_id"])
|
|
|
|
|
|
def downgrade():
|
|
op.drop_index("ix_user_prefs_tenant_id", table_name="user_preferences")
|
|
op.drop_index("ix_user_prefs_user_id", table_name="user_preferences")
|
|
op.drop_index("ix_user_prefs_tenant_user", table_name="user_preferences")
|
|
op.drop_table("user_preferences")
|