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

namespace Zotlabs\Update;

class _1007 {
function run() {
	$r = q("ALTER TABLE `channel` ADD `channel_r_storage` INT UNSIGNED NOT NULL DEFAULT '128', ADD `channel_w_storage` INT UNSIGNED NOT NULL DEFAULT '128', add index ( channel_r_storage ), add index ( channel_w_storage )");

	if($r && $r2)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}