I added two tables to my local dynamodb connection and couldn't seem to find a way to delete them. I would like to delete "CoreTable" and "CoreTable-local" as shown in the figure below. Thanks!
I added two tables to my local dynamodb connection and couldn't seem to find a way to delete them. I would like to delete "CoreTable" and "CoreTable-local" as shown in the figure below. Thanks!
I was able to use the aws-cli
aws dynamodb delete-table --table-name <table name> --endpoint-url http://localhost:8000
to delete the table. But I still wonder if that can be done in NoSQL Workbench.