mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 01:11:38 +03:00
12 lines
471 B
SQL
12 lines
471 B
SQL
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
|
|
); |