mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-22 17:00:14 +08:00
10 lines
247 B
SQL
10 lines
247 B
SQL
CREATE TABLE `preference` (
|
|
`scope` text NOT NULL,
|
|
`key` text NOT NULL,
|
|
`value` text,
|
|
`created_at` integer,
|
|
`updated_at` integer,
|
|
`deleted_at` integer
|
|
);
|
|
--> statement-breakpoint
|
|
CREATE INDEX `scope_name_idx` ON `preference` (`scope`,`key`); |