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

namespace Zotlabs\Update;

class _1036 {
function run() {
	$r = q("ALTER TABLE `profile` ADD `channels` TEXT NOT NULL AFTER `contact` ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;

}



}