for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Migrations\Schema\V110;
use Chamilo\CoreBundle\Migrations\AbstractMigrationChamilo;
use Doctrine\DBAL\Schema\Schema;
/**
* Class Version20150713132630
*
* @package Chamilo\CoreBundle\Migrations\Schema\V11010
*/
class Version20150805161000 extends AbstractMigrationChamilo
{
* @param Schema $schema
public function up(Schema $schema)
$sessionTable = $schema->getTable('session');
$sessionTable->addColumn(
'send_subscription_notification',
\Doctrine\DBAL\Types\Type::BOOLEAN,
['default' => false]
);
}
public function down(Schema $schema)
$sessionTable->dropColumn('send_subscription_notification');