ash_hq/priv/repo/migrations/20220405055516_migrate_resources4.exs
Zach Daniel 86798987d4 WIP
2022-04-05 02:20:36 -04:00

23 lines
473 B
Elixir

defmodule AshHq.Repo.Migrations.MigrateResources4 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(:guides) do
add :category, :text, default: "Guides"
add :route, :text, null: false
end
end
def down do
alter table(:guides) do
remove :route
remove :category
end
end
end