Skip to content

Instantly share code, notes, and snippets.

View mhouchin's full-sized avatar

Mark Houchin mhouchin

View GitHub Profile
@mhouchin
mhouchin / sonata_media_path.sql
Created April 22, 2016 07:51
PostgreSQL function to generate sonata media path
-- Function: public.sonata_media_path(bigint, text, text, text)
-- DROP FUNCTION public.sonata_media_path(bigint, text, text, text);
CREATE OR REPLACE FUNCTION public.sonata_media_path(
id bigint,
context text,
size text,
reference text)
RETURNS text AS