summaryrefslogtreecommitdiff
path: root/internal/storage
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2023-10-08 09:54:37 +1100
committerGitHub <noreply@github.com>2023-10-08 09:54:37 +1100
commit28389020fff56c40133763b9f2048e9d210888a4 (patch)
treedc993fa141bcaf84e8e506d7894a1d989ece9969 /internal/storage
parent381a4a95bb4ad1020ef173609fa67bdb70d80b2e (diff)
refactor: misc (#6102)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/storage')
-rw-r--r--internal/storage/migrations/V0007.ConsistencyFixes.sqlite.up.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/storage/migrations/V0007.ConsistencyFixes.sqlite.up.sql b/internal/storage/migrations/V0007.ConsistencyFixes.sqlite.up.sql
index 1af55ed6b..52d9c5434 100644
--- a/internal/storage/migrations/V0007.ConsistencyFixes.sqlite.up.sql
+++ b/internal/storage/migrations/V0007.ConsistencyFixes.sqlite.up.sql
@@ -419,7 +419,7 @@ CREATE TABLE IF NOT EXISTS oauth2_consent_preconfiguration (
revoked BOOLEAN NOT NULL DEFAULT FALSE,
scopes TEXT NOT NULL,
audience TEXT NULL,
- CONSTRAINT "oauth2_consent_preconfiguration_subject_fkey"
+ CONSTRAINT oauth2_consent_preconfiguration_subject_fkey
FOREIGN KEY (subject)
REFERENCES user_opaque_identifier (identifier) ON UPDATE CASCADE ON DELETE RESTRICT
);