mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 09:10:13 +01:00
16 lines
644 B
MySQL
16 lines
644 B
MySQL
|
-- CreateTable
|
||
|
CREATE TABLE "slash_command_presets" (
|
||
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||
|
"command" TEXT NOT NULL,
|
||
|
"prompt" TEXT NOT NULL,
|
||
|
"description" TEXT NOT NULL,
|
||
|
"uid" INTEGER NOT NULL DEFAULT 0,
|
||
|
"userId" INTEGER,
|
||
|
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
"lastUpdatedAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
CONSTRAINT "slash_command_presets_userId_fkey" FOREIGN KEY ("userId") REFERENCES "users" ("id") ON DELETE CASCADE ON UPDATE CASCADE
|
||
|
);
|
||
|
|
||
|
-- CreateIndex
|
||
|
CREATE UNIQUE INDEX "slash_command_presets_uid_command_key" ON "slash_command_presets"("uid", "command");
|