/*
  Warnings:

  - You are about to drop the column `lastModified` on the `documents` table. All the data in the column will be lost.
  - Made the column `fileName` on table `documents` required. This step will fail if there are existing NULL values in that column.
  - Made the column `filePath` on table `documents` required. This step will fail if there are existing NULL values in that column.
  - Made the column `type` on table `documents` required. This step will fail if there are existing NULL values in that column.

*/
-- AlterTable
ALTER TABLE "public"."documents" DROP COLUMN "lastModified",
ALTER COLUMN "fileName" SET NOT NULL,
ALTER COLUMN "filePath" SET NOT NULL,
ALTER COLUMN "type" SET NOT NULL;
