mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-19 01:12:17 +03:00
17 lines
536 B
PL/PgSQL
17 lines
536 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
CREATE TABLE oidc_device_codes
|
|
(
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
created_at DATETIME,
|
|
device_code TEXT NOT NULL UNIQUE,
|
|
user_code TEXT NOT NULL UNIQUE,
|
|
scope TEXT NOT NULL,
|
|
expires_at DATETIME NOT NULL,
|
|
is_authorized BOOLEAN NOT NULL DEFAULT FALSE,
|
|
user_id TEXT REFERENCES users ON DELETE CASCADE,
|
|
client_id TEXT NOT NULL REFERENCES oidc_clients ON DELETE CASCADE
|
|
);
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|