Files
music_library/priv/background_repo/migrations/20250413170433_create_jobs_table.exs
T
2025-04-13 18:09:53 +01:00

14 lines
360 B
Elixir

defmodule MusicLibrary.BackgroundRepo.Migrations.CreateJobsTable do
use Ecto.Migration
def up do
Oban.Migration.up(version: 12)
end
# We specify `version: 1` in `down`, ensuring that we'll roll all the way back down if
# necessary, regardless of which version we've migrated `up` to.
def down do
Oban.Migration.down(version: 1)
end
end