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:
parent
9c61e3c374
commit
387a10b8eb
1 changed files with 0 additions and 14 deletions
|
|
@ -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
|
||||
Loading…
Add table
Reference in a new issue