From d7dde4e6889f431d1f1535b8beb93c4825d6b12c Mon Sep 17 00:00:00 2001 From: Jason Park Date: Fri, 30 Dec 2022 19:20:13 +0900 Subject: [PATCH] fix: fixing db --- lib/constructs/persistence/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constructs/persistence/database.ts b/lib/constructs/persistence/database.ts index 8a30135c5..02f8ca94c 100644 --- a/lib/constructs/persistence/database.ts +++ b/lib/constructs/persistence/database.ts @@ -132,7 +132,7 @@ export class DynamoDatabase extends Construct { encryption: dynamodb.TableEncryption.DEFAULT, removalPolicy: RemovalPolicy.RETAIN, sortKey: { name: 'created_at', type: dynamodb.AttributeType.STRING }, - tableName: 'forum-comments', + tableName: 'forum-comment', readCapacity: 10, writeCapacity: 7, pointInTimeRecovery: true,