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.
This commit is contained in:
Jamil
2025-04-21 15:04:46 -07:00
committed by GitHub
parent 5db8e20f3b
commit d10c77c17d

View File

@@ -0,0 +1,7 @@
defmodule Domain.Repo.Migrations.DropConfigurations do
use Ecto.Migration
def change do
drop(table(:configurations))
end
end