Remove Oban migration that was causing deployment issues

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 <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-27 16:23:25 -05:00
parent 9c61e3c374
commit 387a10b8eb
No known key found for this signature in database

View file

@ -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