@@ -53,7 +53,20 @@ CREATE INDEX IF NOT EXISTS idx_user_roles_updatedby ON "user_roles" ("updatedBy"
5353
5454-- Group: Admin
5555-- Grouped DDL source: docs_build/database/ddl/admin.sql
56- -- No active Local DB runtime tables for this group in the current DEV adapter.
56+ CREATE TABLE IF NOT EXISTS " platform_settings" (
57+ " key" TEXT PRIMARY KEY ,
58+ " settingKey" TEXT ,
59+ " settingValue" TEXT ,
60+ " settingType" TEXT ,
61+ " description" TEXT ,
62+ " isActive" TEXT ,
63+ " createdAt" TEXT ,
64+ " updatedAt" TEXT ,
65+ " createdBy" TEXT NOT NULL REFERENCES users(" key" ),
66+ " updatedBy" TEXT NOT NULL REFERENCES users(" key" )
67+ );
68+ CREATE INDEX IF NOT EXISTS idx_platform_settings_createdby ON " platform_settings" (" createdBy" );
69+ CREATE INDEX IF NOT EXISTS idx_platform_settings_updatedby ON " platform_settings" (" updatedBy" );
5770
5871-- Group: Game Workspace
5972-- Grouped DDL source: docs_build/database/ddl/game-workspace.sql
@@ -601,7 +614,20 @@ CREATE INDEX IF NOT EXISTS idx_toolbox_votes_updatedby ON "toolbox_votes" ("upda
601614
602615-- Group: Support Tickets
603616-- Grouped DDL source: docs_build/database/ddl/support-tickets.sql
604- -- No active Local DB runtime tables for this group in the current DEV adapter.
617+ CREATE TABLE IF NOT EXISTS " support_categories" (
618+ " key" TEXT PRIMARY KEY ,
619+ " categorySlug" TEXT ,
620+ " name" TEXT ,
621+ " description" TEXT ,
622+ " isActive" TEXT ,
623+ " sortOrder" TEXT ,
624+ " createdAt" TEXT ,
625+ " updatedAt" TEXT ,
626+ " createdBy" TEXT NOT NULL REFERENCES users(" key" ),
627+ " updatedBy" TEXT NOT NULL REFERENCES users(" key" )
628+ );
629+ CREATE INDEX IF NOT EXISTS idx_support_categories_createdby ON " support_categories" (" createdBy" );
630+ CREATE INDEX IF NOT EXISTS idx_support_categories_updatedby ON " support_categories" (" updatedBy" );
605631
606632-- Group: Tool State Samples
607633-- Grouped DDL source: Local DB compatibility table; grouped guest seed data is owned under docs_build/database/seed/guest/.
0 commit comments