mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
9 lines
192 B
MySQL
9 lines
192 B
MySQL
|
|
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
|
||
|
|
);
|