mirror of
https://github.com/Nezumi-2711/uptime-monitoring.git
synced 2026-09-22 20:02:21 +00:00
11 lines
295 B
SQL
11 lines
295 B
SQL
CREATE TABLE `ai_settings` (
|
|
`id` integer PRIMARY KEY NOT NULL,
|
|
`enabled` integer DEFAULT false NOT NULL,
|
|
`base_url` text,
|
|
`api_key` text,
|
|
`model` text,
|
|
`created_at` integer NOT NULL,
|
|
`updated_at` integer NOT NULL
|
|
);
|
|
--> statement-breakpoint
|
|
ALTER TABLE `incidents` ADD `ai_message` text; |