Browse Source

WIP: Implementation of a removeSettingCurrent() method for the down() calls in migrations

Yannick Warnier 8 years ago
parent
commit
ca91fc063a
1 changed files with 10 additions and 0 deletions
  1. 10 0
      app/Migrations/AbstractMigrationChamilo.php

+ 10 - 0
app/Migrations/AbstractMigrationChamilo.php

@@ -135,4 +135,14 @@ abstract class AbstractMigrationChamilo extends AbstractMigration
         }
         return false;
     }
+    /**
+     * Remove a setting completely
+     * @param string $variable The setting variable name
+     * @return void
+     */
+    public function removeSettingCurrent($variable)
+    {
+        //to be implemented
+    }
+
 }