UA-Bot/prisma/migrations/20230724154656_ids/migration.sql

12 lines
300 B
MySQL
Raw Normal View History

2023-07-24 15:47:40 +00:00
/*
Warnings:
- A unique constraint covering the columns `[id]` on the table `Post` will be added. If there are existing duplicate values, this will fail.
*/
-- AlterTable
ALTER TABLE "Post" ADD COLUMN "id" SERIAL NOT NULL;
-- CreateIndex
CREATE UNIQUE INDEX "Post_id_key" ON "Post"("id");