PDO was not escaping strings for SET as array
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php
index 2104601..6a19096 100644
--- a/system/database/DB_forge.php
+++ b/system/database/DB_forge.php
@@ -762,7 +762,7 @@
$attributes['CONSTRAINT'] = $this->db->escape($attributes['CONSTRAINT']);
default:
$field['length'] = is_array($attributes['CONSTRAINT'])
- ? '('.implode(',', $attributes['CONSTRAINT']).')'
+ ? '("'.implode('","', $attributes['CONSTRAINT']).'")'
: '('.$attributes['CONSTRAINT'].')';
break;
}