mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
9 lines
245 B
SQL
9 lines
245 B
SQL
CREATE TABLE remote_control_enrollments (
|
|
websocket_url TEXT NOT NULL,
|
|
account_id TEXT NOT NULL,
|
|
server_id TEXT NOT NULL,
|
|
server_name TEXT NOT NULL,
|
|
updated_at INTEGER NOT NULL,
|
|
PRIMARY KEY (websocket_url, account_id)
|
|
);
|