From b0dcd27049eabc64db25a26e3a879c49199feae7 Mon Sep 17 00:00:00 2001 From: carla Date: Fri, 20 Jun 2025 13:51:21 +0200 Subject: [PATCH] fix(citext): added missing citext extension migration --- ...0110849_add_accounts_domain_extensions.exs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 priv/repo/migrations/20250620110849_add_accounts_domain_extensions.exs diff --git a/priv/repo/migrations/20250620110849_add_accounts_domain_extensions.exs b/priv/repo/migrations/20250620110849_add_accounts_domain_extensions.exs new file mode 100644 index 0000000..f77419c --- /dev/null +++ b/priv/repo/migrations/20250620110849_add_accounts_domain_extensions.exs @@ -0,0 +1,19 @@ +defmodule Mv.Repo.Migrations.AddAccountsDomainExtensions do + @moduledoc """ + Installs any extensions that are mentioned in the repo's `installed_extensions/0` callback + + This file was autogenerated with `mix ash_postgres.generate_migrations` + """ + + use Ecto.Migration + + def up do + execute("CREATE EXTENSION IF NOT EXISTS \"citext\"") + end + + def down do + # Uncomment this if you actually want to uninstall the extensions + # when this migration is rolled back: + # execute("DROP EXTENSION IF EXISTS \"citext\"") + end +end