You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The DynamoDB Migrations Tool Command Line Interface (CLI)
8
8
9
9
## Installation
10
10
11
-
Make sure you have [AWS-SDK](https://aws.amazon.com/sdk-for-node-js/) installed. Then install the Dynamit CLI to be used in your project with
11
+
Make sure you have [AWS-SDK](https://aws.amazon.com/sdk-for-node-js/) installed and configured properly. Then install the Dynamit CLI to be used in your project with
12
12
13
13
```bash
14
14
$ npm install --save-dev dynamit-cli
@@ -20,6 +20,8 @@ And then you should be able to run the CLI with
20
20
$ npx dynamit --help
21
21
```
22
22
23
+
Migration records are supposed to be stored in the DynamoDB table with the `table-name` (`"migrations"` by default) and primary key `attribute-name` (`"name"` by default) defined as optional cli options. The tool cannot create the table for you yet, so make sure you created it properly. See [Creating a Table Developer Guide](https://docs.amazonaws.cn/en_us/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html#WorkingWithTables.Basics.CreateTable)
0 commit comments