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













                                                                                                                                                          
<?php

namespace Zotlabs\Update;

class _1022 {
function run() {
	$r = q("alter table attach add index ( filename ), add index ( filetype ), add index ( filesize ), add index ( created ), add index ( edited ) ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}