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

namespace Zotlabs\Update;

class _1094 {
function run() {
	$r = q("ALTER TABLE `chatroom` ADD `cr_expire` INT UNSIGNED NOT NULL DEFAULT '0' AFTER `cr_edited` ,
ADD INDEX ( `cr_expire` )");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}