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

namespace Zotlabs\Update;

class _1184 {
function run() {

	$r1 = q("alter table site add site_crypto text not null default '' ");

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


}