ash_postgres/priv/test_repo/migrations/20231127215636_migrate_resources11.exs
2023-11-27 17:47:54 -05:00

21 lines
428 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.MigrateResources11 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(:posts) do
add :composite_point, :custom_point
end
end
def down do
alter table(:posts) do
remove :composite_point
end
end
end