This commit is contained in:
2025-08-23 22:31:47 -04:00
parent 9ca9c53baf
commit e5bccc85c2
22 changed files with 2405 additions and 209 deletions

View File

@ -12,4 +12,9 @@ ALTER TABLE applications ADD CONSTRAINT chk_token_prefix_format
CREATE INDEX idx_applications_token_prefix ON applications(token_prefix);
-- Update existing applications with empty prefix (they will use the default "kms_" prefix)
-- Applications can later be updated to have custom prefixes
-- Applications can later be updated to have custom prefixes
-- Set the internal application prefix to "KMS"
UPDATE applications
SET token_prefix = 'KMS'
WHERE app_id = 'internal.api-key-service';