mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
6 lines
213 B
MySQL
6 lines
213 B
MySQL
|
|
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`);
|