aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Update/_1142.php
blob: a8ffcc182f67aaac36b618303b5087ee68a38ebf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                 
<?php

namespace Zotlabs\Update;

class _1142 {
function run() {

	$r1 = q("alter table site add site_dead smallint not null default '0' ");
	$r2 = q("create index site_dead on site ( site_dead ) ");
	if($r1 && $r2)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;


}


}