When describing a Postgres native "uuid" column, the length 36 should be returned so that Model.save() will be able to correctly set $isUUID as "true" on that column. Fixes #2467
@@ -206,6 +206,8 @@ class Postgres extends DboSource {
if ($c->type == 'character varying') {
$length = null;
$type = 'text';
+ } else if ($c->type == 'uuid') {
+ $length = 36;
} else {
$length = intval($c->oct_length);
}