Skip to main content
A slug is the readable part of a URL, and building one from a title means folding accents, lowercasing, replacing punctuation with a separator, and trimming the separators off the ends. vsql_slugify does that in SQL, which means a generated column can hold the slug and keep it in step with the title.
A third party writes and maintains this extension. VillageSQL does not build, test, or ship it, and the description below follows the maintainer’s own documentation. Read that documentation before you rely on it.

Install

Build it from the repository, then install it into the server:

What it adds

The maintainer’s documentation shows it used in a STORED generated column, so the slug is computed when the row is written rather than on every read.

See also