#extensions
2 posts tagged extensions. Clear filter
-
How to Enable UUIDs in Postgres
The first thing you'll need to do is enable the extension create extension "uuid-ossp"; To test that it's working select uuidgeneratev1(); For more info on which version of the algorithm you should...
-
Transform Matching Text with Gsub in Ruby and Regular Expression
Here is a gist that demonstrates how easy it is to transform text using gsub and a block with Ruby. "Scs Epc Score".gsub (/scs|epc/i) { |i| i.upcase } =\ SCS EPC Score For more helpful string...