ash_hq/priv/repo/migrations/20221215082555_migrate_resources35.exs

22 lines
449 B
Elixir
Raw Permalink Normal View History

defmodule AshHq.Repo.Migrations.MigrateResources35 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(:guides) do
2022-12-28 08:11:08 +13:00
modify(:sanitized_route, :text, null: false)
end
end
def down do
alter table(:guides) do
2022-12-28 08:11:08 +13:00
modify(:sanitized_route, :text, null: true)
end
end
2022-12-28 08:11:08 +13:00
end