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

namespace Zotlabs\Update;

class _1019 {
function run() {
	$r = q("ALTER TABLE `event` DROP `message_id` ");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}