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

namespace Zotlabs\Update;

class _1071 {
function run() {
	$r = q("ALTER TABLE `updates` ADD `ud_addr` CHAR( 255 ) NOT NULL DEFAULT '',
ADD INDEX ( `ud_addr` ) ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}