File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ CREATE TABLE "public"."oauth2_client_access_tokens" (
43
43
enabled boolean DEFAULT TRUE NOT NULL
44
44
scopes TEXT [] NOT NULL
45
45
);
46
+ ALTER TABLE " public" ." oauth2_client_access_tokens" ENABLE ROW LEVEL SECURITY;
47
+ CREATE INDEX "idx_oauth2_access_tokens_client_id " ON " public" ." oauth2_client_access_tokens" (" client_id" );
46
48
47
49
-- table storing the refresh tokens for clients
48
50
CREATE TABLE "public "." oauth2_client_refresh_tokens" (
@@ -53,4 +55,6 @@ CREATE TABLE "public"."oauth2_client_refresh_tokens" (
53
55
refresh_token_expires_at TIMESTAMPTZ NOT NULL ,
54
56
enabled boolean DEFAULT TRUE NOT NULL
55
57
scopes TEXT [] NOT NULL
56
- );
58
+ );
59
+ ALTER TABLE " public" ." oauth2_client_refresh_tokens" ENABLE ROW LEVEL SECURITY;
60
+ CREATE INDEX "idx_oauth2_refresh_tokens_client_id " ON " public" ." oauth2_client_refresh_tokens" (" client_id" );
You can’t perform that action at this time.
0 commit comments