Packages

Version management tool for migration file of DynamoDB.

Current section

Files

Jump to
dynamo_migration priv dynamo migrations 20220130083005_create_cli_tests_table.exs
Raw

priv/dynamo/migrations/20220130083005_create_cli_tests_table.exs

defmodule Dynamo.Migrations.CreateCliTestsTable do
def change do
# ## You can freely write operations related to DynamoDB.
# ### Examples.
# ExAws.Dynamo.create_table(
# "Tests",
# [id: :hash],
# %{id: :number},
# 1,
# 1,
# :provisioned
# )
# |> ExAws.request!()
end
end