Application\Migrations\Version20121205115800::up PHP Метод

up() публичный Метод

public up ( Doctrine\DBAL\Schema\Schema $schema )
$schema Doctrine\DBAL\Schema\Schema
    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("DROP INDEX date_bundle ON score");
        $this->addSql("ALTER TABLE score ADD hash VARCHAR(32) NOT NULL");
        $this->addSql("CREATE UNIQUE INDEX date_bundle ON score (date, bundle_id, hash)");
    }
Version20121205115800