9 lines
220 B
MySQL
9 lines
220 B
MySQL
|
|
CREATE TABLE `system_prompts` (
|
||
|
|
`id` text PRIMARY KEY NOT NULL,
|
||
|
|
`name` text NOT NULL,
|
||
|
|
`content` text NOT NULL,
|
||
|
|
`type` text DEFAULT 'system' NOT NULL,
|
||
|
|
`created_at` integer NOT NULL,
|
||
|
|
`updated_at` integer NOT NULL
|
||
|
|
);
|