diff --git a/platform/hosting_platform.install b/platform/hosting_platform.install
index fa7f8db..9077864 100644
--- a/platform/hosting_platform.install
+++ b/platform/hosting_platform.install
@@ -37,11 +37,6 @@ function hosting_platform_schema() {
         'not null' => TRUE,
         'default' => 0,
       ),
-      'release_id' => array(
-        'type' => 'int',
-        'not null' => TRUE,
-        'default' => 0,
-      ),
       'verified' => array(
         'type' => 'int',
         'not null' => TRUE,
@@ -203,3 +198,14 @@ function hosting_platform_update_6207() {
 
   return $ret;
 }
+
+/**
+ * Drop release_id from hosting_platform.
+ */
+function hosting_platform_update_6208() {
+  $ret = array();
+  if (db_column_exists('hosting_platform', 'release_id')) {
+    db_drop_field($ret, 'hosting_platform', 'release_id');
+  }
+  return $ret;
+}
