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

namespace Zotlabs\Update;

class _1008 {
function run() {
	$r = q("alter table profile drop prv_keywords,  CHANGE `pub_keywords` `keywords` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, drop index pub_keywords");

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


}