ash_postgres/priv/test_repo/migrations/20221125171148_migrate_resources4.exs
Zach Daniel 059837651d improvement: add unique constraints to changeset for custom unique indexes
improvement: separate out concurrent index creations and do them in a separate transaction
2022-11-25 14:06:22 -05:00

23 lines
No EOL
482 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.MigrateResources4 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 :uniq_custom_one, :text
add :uniq_custom_two, :text
end
end
def down do
alter table(:posts) do
remove :uniq_custom_two
remove :uniq_custom_one
end
end
end