diff --git a/quiz.install b/quiz.install
index ec3a50d..7c4474d 100644
--- a/quiz.install
+++ b/quiz.install
@@ -678,6 +678,14 @@ function quiz_update_7101(&$sandbox) {
   db_add_field('quiz_user_settings', 'show_passed', array('type' => 'int', 'not null' => TRUE,'default' => 1,'size' => 'tiny'));
   return t('Done !');
 }
+function quiz_update_7102(&$sandbox) { 	 
+  db_add_field('quiz_node_properties', 'summary_pass_format', array('type' => 'varchar', 'length' => 255));
+  db_add_field('quiz_node_properties', 'summary_default_format', array('type' => 'varchar', 'length' => 255)); 
+  db_add_field('quiz_node_result_options', 'option_summary_format', array('type' => 'varchar', 'length' => 255));
+  db_add_field('quiz_user_settings', 'summary_pass_format', array('type' => 'varchar', 'length' => 255));
+  db_add_field('quiz_user_settings', 'summary_default_format', array('type' => 'varchar','length' => 255)); 
+  return t('Added new format fields to the tables.');
+}
 /**
  * Implements hook_uninstall().
  */
