9 lines
322 B
SQL
9 lines
322 B
SQL
CREATE TABLE `mcp_export_tokens` (
|
|
`token_hash` text PRIMARY KEY NOT NULL,
|
|
`kind` text NOT NULL,
|
|
`payload` text NOT NULL,
|
|
`expires_at` text NOT NULL,
|
|
`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL
|
|
);
|
|
--> statement-breakpoint
|
|
CREATE INDEX `mcp_export_tokens_expires_at_idx` ON `mcp_export_tokens` (`expires_at`); |