File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 38
38
END IF;
39
39
END;
40
40
$$;
41
+ alter function extensions .grant_pg_cron_access owner to supabase_admin;
41
42
42
43
drop event trigger if exists issue_pg_cron_access;
43
44
CREATE EVENT TRIGGER issue_pg_cron_access ON ddl_command_end
Original file line number Diff line number Diff line change 2
2
3
3
stdenv . mkDerivation rec {
4
4
pname = "supautils" ;
5
- version = "2.6.0 " ;
5
+ version = "2.7.3 " ;
6
6
7
7
buildInputs = [ postgresql ] ;
8
8
9
9
src = fetchFromGitHub {
10
10
owner = "supabase" ;
11
11
repo = pname ;
12
12
rev = "refs/tags/v${ version } " ;
13
- hash = "sha256-QNfUpQjqHNzbNqBvjb5a3GtNH9hjbBMDUK19xUU3LpI =" ;
13
+ hash = "sha256-QKQQUz6ObzqINTLZaMQtocOkYX0Rh61fBLoB+rZ64UM =" ;
14
14
} ;
15
15
16
16
installPhase = ''
17
17
mkdir -p $out/lib
18
18
19
- install -D *${ postgresql . dlSuffix } -t $out/lib
19
+ install -D build/ *${ postgresql . dlSuffix } -t $out/lib
20
20
'' ;
21
21
22
22
meta = with lib ; {
You can’t perform that action at this time.
0 commit comments