feat: initial commit
This commit is contained in:
commit
e214116e40
253 changed files with 17406 additions and 0 deletions
4
queries/functions/slugify.psql
Normal file
4
queries/functions/slugify.psql
Normal file
|
@ -0,0 +1,4 @@
|
|||
SELECT lower(regexp_replace(
|
||||
unaccent(regexp_replace($1, '[^\\w\\s-]', '', 'g')),
|
||||
'\\s+', '-', 'g'
|
||||
));
|
Loading…
Add table
Add a link
Reference in a new issue