mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
* feat: add custom css for board and custom classes in advanced options for items * chore: add mysql migration * fix: test not working * fix: format issues * fix: typecheck issue * fix: build issue * chore: add missing translations * fix: merge issues related to migrations * fix: format issues * fix: merge issue with migration * fix: format issue
6 lines
213 B
SQL
6 lines
213 B
SQL
CREATE TABLE `serverSetting` (
|
|
`key` text PRIMARY KEY NOT NULL,
|
|
`value` text DEFAULT '{"json": {}}' NOT NULL
|
|
);
|
|
--> statement-breakpoint
|
|
CREATE UNIQUE INDEX `serverSetting_key_unique` ON `serverSetting` (`key`); |