getSchema() as $tableName => $table ) { foreach ( $table->fields as $fieldName => $field ) { if ( !in_array( $field->type, ezcDbSchema::$supportedTypes ) ) { $errors[] = "Field '$tableName:$fieldName' uses the unsupported type '{$field->type}'."; } } } return $errors; } } ?>