Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1058e08

Browse files
committedApr 13, 2020
Changing the table creation to be ondemand
1 parent 506e9c5 commit 1058e08

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎src/models/Challenge.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,7 @@ const schema = new Schema({
122122
required: false
123123
}
124124
},
125-
{
126-
throughput: { read: 4, write: 2 }
127-
})
125+
{ throughput: 'ON_DEMAND' }
126+
)
128127

129128
module.exports = schema

0 commit comments

Comments
 (0)
Please sign in to comment.