silverstripe-framework/src/Dev/MigrationTask.php

77 lines
1.9 KiB
PHP

<?php
namespace SilverStripe\Dev;
/**
* A migration task is a build task that is reversible.
*
* <b>Creating Migration Tasks</b>
*
* To create your own migration task all you need to do is define your own subclass of MigrationTask and define the
* following functions
*
* <i>mysite/code/MyMigrationTask.php</i>
*
* <code>
* class MyMigrationTask extends BuildTask {
*
* protected $title = "My Database Migrations"; // title of the script
* protected $description = "Description"; // description of what it does
*
* public function run($request) {
* if ($request->getVar('Direction') == 'down') {
* $this->down();
* } else {
* $this->up();
* }
* }
*
* public function up() {
* // do something when going from old -> new
* }
*
* public function down() {
* // do something when going from new -> old
* }
* }
* </code>
*
* <b>Running Migration Tasks</b>
* To run any tasks you can find them under the dev/ namespace. To run the above script you would need to run
* the following and note - Either the site has to be in [devmode](debugging) or you need to add ?isDev=1 to the URL
*
* <code>
* // url to visit if in dev mode.
* http://www.yoursite.com/dev/tasks/MyMigrationTask
*
* // url if you are in live mode but need to run this
* http://www.yoursite.com/dev/tasks/MyMigrationTask?isDev=1
* </code>
*/
class MigrationTask extends BuildTask
{
private static $segment = 'MigrationTask';
protected $title = "Database Migrations";
protected $description = "Provide atomic database changes (subclass this and implement yourself)";
public function run($request)
{
if ($request->param('Direction') == 'down') {
$this->down();
} else {
$this->up();
}
}
public function up()
{
}
public function down()
{
}
}