Packages

Asset-first data orchestration framework for Elixir/BEAM.

Current section

Files

Jump to
flowstone priv repo migrations 0000_create_oban_tables.exs
Raw

priv/repo/migrations/0000_create_oban_tables.exs

defmodule FlowStone.Repo.Migrations.CreateObanTables do
use Ecto.Migration
def up do
Oban.Migrations.up()
end
def down do
Oban.Migrations.down()
end
end