File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
prisma/migrations/20250922163205_fix Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ Warnings:
3+
4+ - You are about to drop the column `lastUpdatedAt` on the `Email` table. All the data in the column will be lost.
5+ - Added the required column `updatedAt` to the `Email` table without a default value. This is not possible if the table is not empty.
6+
7+ */
8+ -- AlterTable
9+ ALTER TABLE " Email" DROP COLUMN " lastUpdatedAt" ,
10+ ADD COLUMN " updatedAt" TIMESTAMP (3 ) NOT NULL ;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export class EmailService {
5353 From : 'info@dump.hr' ,
5454 To : intern . email ,
5555 Subject : subject ,
56- HtmlBody : `${ template . render ( { intern } ) } ${ text } ${ trackImage } ` ,
56+ HtmlBody : `${ template . render ( { intern } ) } ${ trackImage } ` ,
5757 MessageStream : 'outbound' ,
5858 } ) ;
5959 } ) ,
You can’t perform that action at this time.
0 commit comments