mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 19:29:17 +01:00
* feat(spotlight): add search settings link * feat(search-engine): add to manage pages * feat(spotlight): add children option for external search engines * chore: revert search settings * fix: deepsource issue * fix: inconsistent breadcrum placement * chore: address pull request feedback
10 lines
250 B
SQL
10 lines
250 B
SQL
CREATE TABLE `search_engine` (
|
|
`id` varchar(64) NOT NULL,
|
|
`icon_url` text NOT NULL,
|
|
`name` varchar(64) NOT NULL,
|
|
`short` varchar(8) NOT NULL,
|
|
`description` text,
|
|
`url_template` text NOT NULL,
|
|
CONSTRAINT `search_engine_id` PRIMARY KEY(`id`)
|
|
);
|