ash_hq/priv/repo/migrations/20230926203118_migrate_resources54.exs
Zach Daniel 4e36a93e07 improvement: migrate from discord forum logic to elixirforum logic
improvement: search now searches hexdocs
2023-09-27 00:23:56 -04:00

21 lines
412 B
Elixir

defmodule AshHq.Repo.Migrations.MigrateResources54 do
@moduledoc """
Updates resources based on their most recent snapshots.
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
alter table(:mix_tasks) do
add(:module_name, :text)
end
end
def down do
alter table(:mix_tasks) do
remove(:module_name)
end
end
end