mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-07 21:37:49 +03:00
1537500fcb
We're going full monorepo. Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
8 lines
222 B
SQL
8 lines
222 B
SQL
CREATE TABLE IF NOT EXISTS "access_tokens" (
|
|
"id" SERIAL PRIMARY KEY,
|
|
"user_id" INTEGER REFERENCES users (id),
|
|
"hash" VARCHAR(128)
|
|
);
|
|
|
|
CREATE INDEX "index_access_tokens_user_id" ON "access_tokens" ("user_id");
|