diff --git a/smartling.install b/smartling.install
index 1f282ed..2f70e53 100644
--- a/smartling.install
+++ b/smartling.install
@@ -175,8 +175,8 @@ function smartling_schema() {
       ),
       'rid' => array(
         'description' => 'Related id',
-        'type' => 'varchar',
-        'length' => 64,
+        'type' => 'int',
+        'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
       ),
@@ -403,17 +403,24 @@ function smartling_update_7208() {
 }
 
 /**
- * Changes type of RID (Related Entity ID) field from integer to a string
- * to support entities like Beans.
+ * Skipped. Changes type of RID (Related Entity ID) field from integer to a
+ * string to support entities like Beans.
  */
 function smartling_update_7209() {
+  // Don't do this.
+}
+
+/**
+ * Changes type of RID (Related Entity ID) field back to "integer".
+ */
+function smartling_update_7210() {
   $field_spec = array(
     'description' => 'Related id',
-    'type' => 'varchar',
-    'length' => 64,
+    'type' => 'int',
+    'unsigned' => TRUE,
     'not null' => TRUE,
     'default' => 0,
   );
 
   db_change_field('smartling_entity_data', 'rid', 'rid', $field_spec);
-}
\ No newline at end of file
+}
