ash_postgres/priv/test_repo/migrations/20220207205146_migrate_resources2.exs
2022-02-07 16:48:36 -05:00

21 lines
No EOL
397 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.MigrateResources2 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(:authors) do
add :bio, :map
end
end
def down do
alter table(:authors) do
remove :bio
end
end
end