aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Update/_1052.php
blob: 05addf21feac4fbb620314058c1c98aa3c6bcd99 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                        
<?php

namespace Zotlabs\Update;

class _1052 {
function run() {
	$r = q("ALTER TABLE `channel` ADD UNIQUE (`channel_address`) ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}