Skip to content

Commit 9280e97

Browse files
authored
fix (#258)
1 parent 18bf6d2 commit 9280e97

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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;

apps/api/src/email/email.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}),

0 commit comments

Comments
 (0)