aboutsummaryrefslogtreecommitdiff
path: root/db/migrations/1.87_tic1091_chat.php
blob: 629433b8f067fa9b5a4fafb18fc4a51dd7cd818e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class Tic1091Chat extends Migration
{
    function description ()
    {
        return 'remove user config of chat client';
    }

    function up ()
    {
        $db = DBManager::get();
        $db->exec("DELETE FROM `user_config` WHERE `field` = 'CHAT_USE_AJAX_CLIENT'");
    }

    function down ()
    {
    }
}