-
This commit is contained in:
@ -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';
|
||||
Reference in New Issue
Block a user