ash_postgres/priv/test_repo/migrations/20240703155134_migrate_resources32.exs
2024-07-03 11:52:01 -04:00

21 lines
440 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.MigrateResources32 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(:multitenant_orgs) do
modify(:owner_id, :uuid)
end
end
def down do
alter table(:multitenant_orgs) do
modify(:owner_id, :text)
end
end
end