mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +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
9 lines
192 B
SQL
9 lines
192 B
SQL
CREATE TABLE `search_engine` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`icon_url` text NOT NULL,
|
|
`name` text NOT NULL,
|
|
`short` text NOT NULL,
|
|
`description` text,
|
|
`url_template` text NOT NULL
|
|
);
|