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

namespace Zotlabs\Update;

class _1009 {
function run() {
	$r = q("ALTER TABLE `xprof` ADD `xprof_keywords` TEXT NOT NULL");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}



}