UA-Bot/prisma/migrations/20230724154656_ids/migration.sql
2023-07-24 18:47:40 +03:00

11 lines
300 B
SQL

/*
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");