/**
* This method is called in Object|Class::save() and is used to create the database table for the classification data
* @return void
*/
public function classSaved($class, $params = [])
{
$clasificationStore = new Object\Classificationstore();
$clasificationStore->setClass($class);
$clasificationStore->createUpdateTable();
}