ash_postgres/priv/test_repo/migrations/20240705113722_migrate_resources33.exs
Barnabas Jovanovics 3385bd21f1
improvement: add storage type option (#342)
---------

Co-authored-by: Zach Daniel <zach@zachdaniel.dev>
2024-07-08 09:54:50 -04:00

21 lines
405 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.MigrateResources33 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(:bios, :jsonb)
end
end
def down do
alter table(:authors) do
remove(:bios)
end
end
end