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

namespace Zotlabs\Update;

class _1185 {
function run() {

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

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


}