This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-serve-actions/prisma/migrations/20240124161110_change_item_and_comment_tables/migration.sql
2024-05-23 16:55:29 +02:00

16 lines
485 B
SQL

/*
Warnings:
- You are about to drop the column `updatedAt` on the `Item` table. All the data in the column will be lost.
- You are about to drop the column `updatedAt` on the `ItemComment` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "Item" DROP COLUMN "updatedAt";
-- AlterTable
ALTER TABLE "ItemComment" DROP COLUMN "updatedAt",
ALTER COLUMN "body" DROP NOT NULL,
ALTER COLUMN "score" DROP NOT NULL,
ALTER COLUMN "regret" SET DEFAULT false;