mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
8 lines
222 B
MySQL
8 lines
222 B
MySQL
|
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");
|