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

namespace Zotlabs\Update;

class _1186 {
function run() {

	$r1 = q("alter table profile add profile_vcard text not null");

	if($r1)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;


}


}