mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
9 lines
256 B
SQL
9 lines
256 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `email` to the `TemplateRecipient` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "TemplateRecipient" ADD COLUMN "email" VARCHAR(255) NOT NULL;
|