diff --git a/mollom.install b/mollom.install
index 25ff4e8..19523ff 100644
--- a/mollom.install
+++ b/mollom.install
@@ -195,7 +195,7 @@ function mollom_schema() {
         'type' => 'varchar',
         'length' => 8,
         'not null' => TRUE,
-        'default' => 'medium',
+        'default' => 'normal',
       ),
       'module' => array(
         'description' => 'Module name owning the form.',
@@ -681,3 +681,19 @@ function mollom_update_6120() {
   }
   return $ret;
 }
+
+/**
+ * Fix default value of {mollom_form}.strictness.
+ */
+function mollom_update_6121() {
+  $ret = array();
+  db_change_field($ret, 'mollom_form', 'strictness', 'strictness', array(
+    'description' => 'Strictness of text analysis checks.',
+    'type' => 'varchar',
+    'length' => 8,
+    'not null' => TRUE,
+    'default' => 'normal',
+  ));
+  $ret[] = update_sql("UPDATE {mollom_form} SET strictness = 'normal' WHERE strictness = 'medium'");
+  return $ret;
+}
