mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
chore(prisma): add migration for language server protocol enum
This commit is contained in:
parent
adc195d4bf
commit
3e4b396bfe
@ -0,0 +1,12 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- Changed the type of `protocol` on the `LanguageServerConfig` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.
|
||||
|
||||
*/
|
||||
-- CreateEnum
|
||||
CREATE TYPE "LanguageServerProtocol" AS ENUM ('ws', 'wss');
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "LanguageServerConfig" DROP COLUMN "protocol",
|
||||
ADD COLUMN "protocol" "LanguageServerProtocol" NOT NULL;
|
Loading…
Reference in New Issue
Block a user