Skip to content

Commit

Permalink
fix: establishing table (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson authored Mar 16, 2023
1 parent 6432dec commit 05740ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/constructs/persistence/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class DynamoDatabase extends Construct {
encryption: dynamodb.TableEncryption.DEFAULT,
removalPolicy: RemovalPolicy.RETAIN,
sortKey: { name: 'created_at', type: dynamodb.AttributeType.STRING },
tableName: 'forum-threads',
tableName: 'forum-thread',
readCapacity: 15,
writeCapacity: 15,
pointInTimeRecovery: true,
Expand Down

0 comments on commit 05740ac

Please sign in to comment.