diff --git a/yamlform.install b/yamlform.install
index 12c88c5..1a4764e 100644
--- a/yamlform.install
+++ b/yamlform.install
@@ -203,7 +203,7 @@ function yamlform_update_8075() {
       foreach ($table_schema as $schema_key => $schema_data) {
         if ($schema_key == 'fields') {
           foreach ($schema_data as $field_name => $field_data) {
-            if (preg_match('/_target_id$/', $field_name) && $field_data['description'] == 'The ID of the form entity.' && $schema[$item_name][$table_name]['fields'][$field_name]['length'] === 255) {
+            if (preg_match('/_target_id$/', $field_name) && ($field_data['description'] == 'The ID of the form entity.' || $field_data['description'] == 'The ID of the YAML form entity.') && $schema[$item_name][$table_name]['fields'][$field_name]['length'] === 255) {
               $schema[$item_name][$table_name]['fields'][$field_name]['length'] = 32;
               if ($database_schema->tableExists($table_name)) {
                 $database_schema->changeField($table_name, $field_name, $field_name, $schema[$item_name][$table_name]['fields'][$field_name]);
