ash_postgres/priv/test_repo/migrations/20231127215636_migrate_resources11.exs

22 lines
428 B
Elixir
Raw Normal View History

2023-11-28 11:47:54 +13:00
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