aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1007.php
blob: 74e1bb31099fec47dee526afcc1e7ba0c018e08b (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)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}