Is there any Column Validation support planned in Supabase ?
It's a bit tricky to get it right, regular expressions doesn't really work fast enough, and Unicode can be a bit tricky and requires
I've wrote a small pg validation extension https://github.com/bitsnap/pg_valid long long time ago, to be used with COLUMN CHECK constraints.
And I'd like to implement the most basic CHECK support for Supabase first, then consider integrating a few functions from this extension... or write a new one.
Any thoughts on Column Constraints ?
libicu necromancy to get it right.I've wrote a small pg validation extension https://github.com/bitsnap/pg_valid long long time ago, to be used with COLUMN CHECK constraints.
And I'd like to implement the most basic CHECK support for Supabase first, then consider integrating a few functions from this extension... or write a new one.
Any thoughts on Column Constraints ?