nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1From 49c6138eab0a37d062c5e7d936535d1832b3e031 Mon Sep 17 00:00:00 2001
2From: soyouzpanda <soyouzpanda@soyouzpanda.fr>
3Date: Tue, 23 Dec 2025 19:43:50 +0100
4Subject: [PATCH] fix: disable postgresql C function creation
5
6---
7 core/migrations/0027_auto_20251120_0956.py | 5 -----
8 1 file changed, 5 deletions(-)
9
10diff --git a/core/migrations/0027_auto_20251120_0956.py b/core/migrations/0027_auto_20251120_0956.py
11index fe795ff5..0db2090c 100644
12--- a/core/migrations/0027_auto_20251120_0956.py
13+++ b/core/migrations/0027_auto_20251120_0956.py
14@@ -11,11 +11,6 @@ class Migration(migrations.Migration):
15 operations = [
16 migrations.RunSQL(
17 sql="""
18- CREATE OR REPLACE FUNCTION public.immutable_unaccent(regdictionary, text)
19- RETURNS text
20- LANGUAGE c IMMUTABLE PARALLEL SAFE STRICT AS
21- '$libdir/unaccent', 'unaccent_dict';
22-
23 CREATE OR REPLACE FUNCTION public.f_unaccent(text)
24 RETURNS text
25 LANGUAGE sql IMMUTABLE PARALLEL SAFE STRICT
26--
272.50.1