2014-12-31 01:33:56 +01:00
|
|
|
<?php
|
2015-03-05 21:30:33 +01:00
|
|
|
/**
|
|
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
2016-08-04 22:26:37 +02:00
|
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
2015-03-05 21:30:33 +01:00
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
2018-04-18 16:16:22 +02:00
|
|
|
namespace DoctrineMigrations;
|
2014-12-31 01:33:56 +01:00
|
|
|
|
2018-04-18 16:16:22 +02:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
|
|
use Framadate\AbstractMigration;
|
|
|
|
use Framadate\Utils;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This migration adds the column mail in the vote table
|
|
|
|
*
|
|
|
|
* @package Framadate\Migration
|
|
|
|
* @version 1.2
|
|
|
|
*/
|
|
|
|
class Version20180419190000 extends AbstractMigration
|
|
|
|
{
|
2015-02-26 10:44:49 +01:00
|
|
|
/**
|
|
|
|
* This method should describe in english what is the purpose of the migration class.
|
|
|
|
*
|
|
|
|
* @return string The description of the migration class
|
|
|
|
*/
|
2018-04-18 16:16:22 +02:00
|
|
|
public function description()
|
|
|
|
{
|
|
|
|
return 'Remove the old migration table';
|
|
|
|
}
|
2015-02-26 10:44:49 +01:00
|
|
|
|
2015-01-02 09:08:07 +01:00
|
|
|
/**
|
2018-04-18 16:16:22 +02:00
|
|
|
* @param Schema $schema
|
|
|
|
* @throws \Doctrine\DBAL\Migrations\SkipMigrationException
|
2015-01-02 09:08:07 +01:00
|
|
|
*/
|
2018-04-18 16:16:22 +02:00
|
|
|
public function up(Schema $schema)
|
|
|
|
{
|
|
|
|
$this->skipIf(!$schema->hasTable(Utils::table(MIGRATION_TABLE)), "The old migration table wasn't created, no need to delete it.");
|
|
|
|
$schema->dropTable(Utils::table(MIGRATION_TABLE));
|
|
|
|
}
|
2015-01-02 09:08:07 +01:00
|
|
|
|
2014-12-31 01:33:56 +01:00
|
|
|
/**
|
2018-04-18 16:16:22 +02:00
|
|
|
* @param Schema $schema
|
2014-12-31 01:33:56 +01:00
|
|
|
*/
|
2018-04-18 16:16:22 +02:00
|
|
|
public function down(Schema $schema)
|
|
|
|
{
|
|
|
|
// No need to recreate legacy migration table
|
|
|
|
}
|
2014-12-31 01:33:56 +01:00
|
|
|
}
|