copypaste2/app/DoctrineMigrations/Version20150303224825.php

23 lines
491 B
PHP
Raw Normal View History

2015-03-03 20:38:52 +00:00
<?php
namespace Application\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
/**
* Set secret as NULL where secret = ''
*/
class Version20150303224825 extends AbstractMigration
{
public function up(Schema $schema)
{
$this->addSql('UPDATE copypastes SET secret=NULL WHERE secret=\'\'');
}
public function down(Schema $schema)
{
$this->addSql('UPDATE copypastes SET secret=\'\' WHERE secret=NULL');
}
}