From d10c77c17db08e0a768854425c8b2de601819787 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 21 Apr 2025 15:04:46 -0700 Subject: [PATCH] chore(portal): Drop unused table configurations (#8881) This was left behind in a large refactor as part of #3642 and was never cleaned up. I verified on prod this table in fact has no meaningful data in it and has not changed since that PR was merged. --- .../repo/migrations/20250421182422_drop_configurations.exs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 elixir/apps/domain/priv/repo/migrations/20250421182422_drop_configurations.exs 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