ash_postgres/priv/test_repo/migrations/20231129141453_migrate_resources12.exs

21 lines
438 B
Elixir
Raw Normal View History

2023-11-30 03:14:57 +13:00
defmodule AshPostgres.TestRepo.Migrations.MigrateResources12 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
modify :composite_point, :custom_point
end
end
def down do
alter table(:posts) do
modify :composite_point, :point
end
end
end