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

namespace Zotlabs\Update;

class _1111 {
function run() {
	$r = q("ALTER TABLE `app` ADD `app_requires` CHAR( 255 ) NOT NULL DEFAULT '' ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}