ash_hq/priv/repo/migrations/20220605161424_migrate_resources7.exs

22 lines
431 B
Elixir
Raw Normal View History

2022-06-06 06:03:04 +12:00
defmodule AshHq.Repo.Migrations.MigrateResources7 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(:modules) do
add(:category, :text, null: false, default: "Misc")
2022-06-06 06:03:04 +12:00
end
end
def down do
alter table(:modules) do
remove(:category)
2022-06-06 06:03:04 +12:00
end
end
end