46 lines
885 B
PHP
46 lines
885 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package phpBB Extension - mChat
|
|
* @copyright (c) 2015 dmzx - http://www.dmzx-web.net
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
namespace dmzx\mchat\migrations;
|
|
|
|
class mchat_schema_5 extends \phpbb\db\migration\migration
|
|
{
|
|
|
|
static public function depends_on()
|
|
{
|
|
return array(
|
|
'\dmzx\mchat\migrations\mchat_schema_4',
|
|
);
|
|
}
|
|
|
|
public function update_schema()
|
|
{
|
|
return array(
|
|
'add_tables' => array(
|
|
$this->table_prefix . 'mchat_sessions' => array(
|
|
'COLUMNS' => array(
|
|
'user_id' => array('UINT', 0),
|
|
'user_lastupdate' => array('TIMESTAMP', 0),
|
|
'user_ip' => array('VCHAR:40', ''),
|
|
),
|
|
'PRIMARY_KEY' => 'user_id',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function revert_schema()
|
|
{
|
|
return array(
|
|
'drop_tables' => array(
|
|
$this->table_prefix . 'mchat_sessions',
|
|
),
|
|
);
|
|
}
|
|
} |