/*
  Warnings:

  - Added the required column `updatedAt` to the `BitacoraComentario` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE "BitacoraComentario" ADD COLUMN     "deletedAt" TIMESTAMP(3),
ADD COLUMN     "updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;

-- CreateIndex
CREATE INDEX "BitacoraComentario_deletedAt_idx" ON "BitacoraComentario"("deletedAt");
