mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 01:24:14 +02:00
6 lines
237 B
SQL
6 lines
237 B
SQL
-- AlterTable
|
|
ALTER TABLE "Restrict" ADD COLUMN "endModId" TEXT;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "Restrict" ADD CONSTRAINT "Restrict_endModId_fkey" FOREIGN KEY ("endModId") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE;
|