for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @package sitemaker
* @copyright (c) 2013 Daniel A. (blitze)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*/
namespace blitze\sitemaker\migrations\v20x;
* Initial schema changes needed for Extension installation
class m6_add_block_settings_field extends \phpbb\db\migration\migration
{
* @inheritdoc
public static function depends_on()
return array(
'\blitze\sitemaker\migrations\converter\c4_convert_primetime_data',
);
}
* Update the sm_blocks schema
* @return array Array of table schema
* @access public
public function update_schema()
'add_columns' => array(
$this->table_prefix . 'sm_blocks' => array(
'settings' => array('MTEXT', ''),
),