migration script for old guest account (#2644)

This commit is contained in:
aynsix
2018-06-14 21:09:15 +04:00
committed by jygaulier
parent f2c7ca3a8f
commit 20fd33696b

View File

@@ -0,0 +1,28 @@
<?php
namespace Alchemy\Phrasea\Setup\DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
/**
* Migration script for old guest account
*/
class Version20180614113404 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function doUpSql(Schema $schema)
{
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('UPDATE Users SET guest = 1 WHERE login LIKE "guest%"');
}
/**
* @param Schema $schema
*/
public function doDownSql(Schema $schema)
{
}
}