From 387a10b8eb91c36b86ca89e8b3cd0954cb8357a0 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 27 Jul 2025 16:23:25 -0500 Subject: [PATCH] Remove Oban migration that was causing deployment issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Oban.Migrations module is not available in the release build, causing migrations to fail. Removing this migration to fix deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .../20250616023156_upgrade_oban_to_latest.exs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 priv/repo/migrations/20250616023156_upgrade_oban_to_latest.exs diff --git a/priv/repo/migrations/20250616023156_upgrade_oban_to_latest.exs b/priv/repo/migrations/20250616023156_upgrade_oban_to_latest.exs deleted file mode 100644 index fa2dd8b..0000000 --- a/priv/repo/migrations/20250616023156_upgrade_oban_to_latest.exs +++ /dev/null @@ -1,14 +0,0 @@ -defmodule Aprsme.Repo.Migrations.UpgradeObanToLatest do - use Ecto.Migration - - def up do - # First, drop the existing migration and start fresh - # This ensures we get all the latest schema changes - Oban.Migrations.up() - end - - def down do - # This will rollback to the previous state - Oban.Migrations.down() - end -end