kekrozsak/app/DoctrineMigrations/Version20120819121254.php
Polonkai Gergely cf37eb1af3 Added sticky flag to News entity
Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
2012-08-19 12:20:39 +02:00

30 lines
887 B
PHP

<?php
namespace Application\Migrations;
use Doctrine\DBAL\Migrations\AbstractMigration,
Doctrine\DBAL\Schema\Schema;
/**
* Auto-generated Migration: Please modify to your need!
*/
class Version20120819121254 extends AbstractMigration
{
public function up(Schema $schema)
{
// this up() migration is autogenerated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
$this->addSql("ALTER TABLE news ADD sticky TINYINT(1) NOT NULL");
$this->addSql("UPDATE news SET sticky = FALSE");
}
public function down(Schema $schema)
{
// this down() migration is autogenerated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
$this->addSql("ALTER TABLE news DROP sticky");
}
}