We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c3a96 commit df0417dCopy full SHA for df0417d
1 file changed
internal/datastore/src/__test__/db.ts
@@ -129,10 +129,10 @@ const createLetterQueueTableCommand = new CreateTableCommand({
129
],
130
LocalSecondaryIndexes: [
131
{
132
- IndexName: "timestamp-index",
+ IndexName: "queueSortOrder-index",
133
KeySchema: [
134
{ AttributeName: "supplierId", KeyType: "HASH" }, // Partition key for LSI
135
- { AttributeName: "queueSortOrder-index", KeyType: "RANGE" }, // Sort key for LSI
+ { AttributeName: "queueTimestamp", KeyType: "RANGE" }, // Sort key for LSI
136
137
Projection: {
138
ProjectionType: "ALL",
0 commit comments