diff --git a/elixir/apps/domain/priv/repo/migrations/20250421182422_drop_configurations.exs b/elixir/apps/domain/priv/repo/migrations/20250421182422_drop_configurations.exs new file mode 100644 index 000000000..5bf7bd510 --- /dev/null +++ b/elixir/apps/domain/priv/repo/migrations/20250421182422_drop_configurations.exs @@ -0,0 +1,7 @@ +defmodule Domain.Repo.Migrations.DropConfigurations do + use Ecto.Migration + + def change do + drop(table(:configurations)) + end +end