2017-10-08 20:08:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2018-06-14 11:43:09 +00:00
|
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
2017-10-08 20:08:18 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-11 08:42:24 +00:00
|
|
|
* Changed reading_time field to prevent null value.
|
2017-10-08 20:08:18 +00:00
|
|
|
*/
|
2018-06-14 11:43:09 +00:00
|
|
|
class Version20171008195606 extends WallabagMigration
|
2017-10-08 20:08:18 +00:00
|
|
|
{
|
|
|
|
public function up(Schema $schema)
|
|
|
|
{
|
2017-10-11 08:42:24 +00:00
|
|
|
$this->skipIf('sqlite' === $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\' or \'postgresql\'.');
|
2017-10-08 20:08:18 +00:00
|
|
|
|
|
|
|
switch ($this->connection->getDatabasePlatform()->getName()) {
|
|
|
|
case 'mysql':
|
2017-11-20 21:39:33 +00:00
|
|
|
$this->addSql('UPDATE ' . $this->getTable('entry') . ' SET reading_time = 0 WHERE reading_time IS NULL;');
|
2017-10-08 20:08:18 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' CHANGE reading_time reading_time INT(11) NOT NULL;');
|
|
|
|
break;
|
|
|
|
case 'postgresql':
|
2017-10-13 07:37:03 +00:00
|
|
|
$this->addSql('UPDATE ' . $this->getTable('entry') . ' SET reading_time = 0 WHERE reading_time IS NULL;');
|
2017-10-08 20:08:18 +00:00
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' ALTER COLUMN reading_time SET NOT NULL;');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(Schema $schema)
|
|
|
|
{
|
2017-10-11 08:42:24 +00:00
|
|
|
$this->skipIf('sqlite' === $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\' or \'postgresql\'.');
|
2017-10-08 20:08:18 +00:00
|
|
|
|
|
|
|
switch ($this->connection->getDatabasePlatform()->getName()) {
|
|
|
|
case 'mysql':
|
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' CHANGE reading_time reading_time INT(11);');
|
|
|
|
break;
|
|
|
|
case 'postgresql':
|
|
|
|
$this->addSql('ALTER TABLE ' . $this->getTable('entry') . ' ALTER COLUMN reading_time DROP NOT NULL;');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|