Files
documenso/packages/prisma/migrations/20231030061522_recipient_name_not_placeholder/migration.sql
Ephraim Atta-Duncan 31a9127c9e feat: templates
2023-12-14 12:24:56 +11:00

11 lines
407 B
SQL

/*
Warnings:
- You are about to drop the column `placeholder` on the `TemplateRecipient` table. All the data in the column will be lost.
- Added the required column `name` to the `TemplateRecipient` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "TemplateRecipient" DROP COLUMN "placeholder",
ADD COLUMN "name" VARCHAR(255) NOT NULL;