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

namespace Zotlabs\Update;

class _1166 {
function run() {

	$r = q("alter table source add src_tag text not null default '' ");
    if($r)
        return UPDATE_SUCCESS;
    return UPDATE_FAILED;
}


}