diff --git a/sites/all/modules/contrib/feeds_tamper/feeds_tamper.install b/sites/all/modules/contrib/feeds_tamper/feeds_tamper.install
old mode 100644
new mode 100755
index af54a21..7030768
--- a/sites/all/modules/contrib/feeds_tamper/feeds_tamper.install
+++ b/sites/all/modules/contrib/feeds_tamper/feeds_tamper.install
@@ -87,53 +87,3 @@ function feeds_tamper_uninstall() {
   variable_del('default_feeds_tamper');
 }

-/**
- * Add weight field to feeds_tamper table.
- */
-function feeds_tamper_update_7001(&$sandbox) {
-  $spec = array(
-    'type' => 'int',
-    'not null' => TRUE,
-    'default' => 0,
-    'unsigned' => TRUE,
-    'description' => 'The weight of a plugin instance. Plugins are executed in order.',
-  );
-  db_add_field('feeds_tamper', 'weight', $spec);
-}
-
-/**
- * Add description field to feeds_tamper table.
- */
-function feeds_tamper_update_7002(&$sandbox) {
-  $spec = array(
-    'type' => 'varchar',
-    'length' => 255,
-    'not null' => TRUE,
-    'default' => '',
-    'description' => 'Description of this plugin.',
-  );
-  db_add_field('feeds_tamper', 'description', $spec);
-}
-
-/**
- * Add index on importer.
- */
-function feeds_tamper_update_7003(&$sandbox) {
-  db_add_index('feeds_tamper', 'importer', array('importer'));
-}
-
-/**
- * Verify that description length is 255.
- *
- * See #1182204.
- */
-function feeds_tamper_update_7004(&$sandbox) {
-  $spec = array(
-    'type' => 'varchar',
-    'length' => 255,
-    'not null' => TRUE,
-    'default' => '',
-    'description' => 'Description of this plugin.',
-  );
-  db_change_field('feeds_tamper', 'description', 'description', $spec);
-}
