aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Update/_1056.php
blob: 6c0510f88355316b39dc7760dc6b875594ff3242 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                                                    
<?php

namespace Zotlabs\Update;

class _1056 {
function run() {
	$r = q("ALTER TABLE `xchan` ADD `xchan_instance_url` CHAR( 255 ) NOT NULL DEFAULT '' AFTER `xchan_network` ,
ADD INDEX ( `xchan_instance_url` ) ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}