aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Update/_1040.php
blob: 77dc75a481539a9c0ce364ea10e1fb1412e97bdd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                             
<?php

namespace Zotlabs\Update;

class _1040 {
function run() {
	$r1 = q("ALTER TABLE `session` CHANGE `expire` `expire` BIGINT UNSIGNED NOT NULL ");
	$r2 = q("ALTER TABLE `tokens` CHANGE `expires` `expires` BIGINT UNSIGNED NOT NULL ");

	if($r1 && $r2)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}