Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1create table revoked_access_tokens ( 2 id serial primary key, 3 jti text not null, 4 revoked_at timestamp without time zone not null default now() 5); 6 7create unique index uix_revoked_access_tokens_on_jti on revoked_access_tokens (jti);