aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1148.php
blob: ed9a4d93a62bd6fc2f090d39f3848b51bd78ed16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace Zotlabs\Update;

class _1148 {
function run() {
    $r1 = q("alter table likes add i_mid char(255) not null default '' ");
    $r2 = q("create index i_mid on likes ( i_mid ) ");

    if($r1 && $r2)
        return UPDATE_SUCCESS;
    return UPDATE_FAILED;

}


}