Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1CREATE TABLE IF NOT EXISTS "access_tokens" ( 2 "id" SERIAL PRIMARY KEY, 3 "user_id" INTEGER REFERENCES users (id), 4 "hash" VARCHAR(128) 5); 6 7CREATE INDEX "index_access_tokens_user_id" ON "access_tokens" ("user_id");