We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cda065 commit 2e29d19Copy full SHA for 2e29d19
src/db/postgres/lrsql/postgres/sql/ddl.sql
@@ -495,7 +495,7 @@ ALTER TABLE reaction ALTER COLUMN title TYPE TEXT;
495
-- :command :execute
496
-- :doc Create the `blocked_jwt` table and associated indexes if they do not exist yet.
497
CREATE TABLE IF NOT EXISTS blocked_jwt (
498
- account_id TEXT NOT NULL REFERENCES admin_account(id) ON DELETE CASCADE,
+ account_id UUID NOT NULL REFERENCES admin_account(id) ON DELETE CASCADE,
499
expiration TIMESTAMP,
500
PRIMARY KEY (account_id, expiration)
501
);
0 commit comments