mirror of https://github.com/helloxz/onenav.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
372 B
18 lines
372 B
3 years ago
|
DROP TABLE on_options;
|
||
|
CREATE TABLE on_options (
|
||
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||
|
"key" TEXT(64) NOT NULL,
|
||
|
"value" TEXT,
|
||
|
"extend" TEXT,
|
||
|
CONSTRAINT "option_key_only" UNIQUE ("key" ASC)
|
||
|
);
|
||
|
|
||
|
CREATE INDEX "main"."on_options_id_IDX"
|
||
|
ON "on_options" (
|
||
|
"id" ASC,
|
||
|
"key" ASC
|
||
|
);
|
||
|
CREATE INDEX "main"."on_options_key_IDX"
|
||
|
ON "on_options" (
|
||
|
"key" ASC
|
||
|
);
|