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

namespace Zotlabs\Update;

class _1155 {
function run() {

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



}