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

namespace Zotlabs\Update;

class _1182 {
function run() {

	$r1 = q("alter table site add site_version varchar(32) not null default '' ");

	if($r1)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}



}