mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
13 lines
479 B
SQL
13 lines
479 B
SQL
/*
|
|
Warnings:
|
|
|
|
- A unique constraint covering the columns `[displayId]` on the table `Problem` will be added. If there are existing duplicate values, this will fail.
|
|
- Added the required column `displayId` to the `Problem` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Problem" ADD COLUMN "displayId" INTEGER NOT NULL;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "Problem_displayId_key" ON "Problem"("displayId");
|