diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/database.sql | 4 | ||||
-rw-r--r-- | install/update.php | 12 |
2 files changed, 13 insertions, 3 deletions
diff --git a/install/database.sql b/install/database.sql index ab60678e4..720c79402 100644 --- a/install/database.sql +++ b/install/database.sql @@ -768,7 +768,7 @@ CREATE TABLE IF NOT EXISTS `session` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `sid` char(255) NOT NULL, `data` text NOT NULL, - `expire` int(10) unsigned NOT NULL, + `expire` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `sid` (`sid`), KEY `expire` (`expire`) @@ -832,7 +832,7 @@ CREATE TABLE IF NOT EXISTS `tokens` ( `id` varchar(40) NOT NULL, `secret` text NOT NULL, `client_id` varchar(20) NOT NULL, - `expires` int(11) NOT NULL, + `expires` bigint(20) unsigned NOT NULL, `scope` varchar(200) NOT NULL, `uid` int(11) NOT NULL, PRIMARY KEY (`id`), diff --git a/install/update.php b/install/update.php index eb796ccf6..31857ff2d 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1040 ); +define( 'UPDATE_VERSION' , 1041 ); /** * @@ -513,3 +513,13 @@ function update_r1039() { return UPDATE_FAILED; } + +function update_r1040() { + $r = q("ALTER TABLE `session` CHANGE `expire` `expire` BIGINT UNSIGNED NOT NULL, + ALTER TABLE `tokens` CHANGE `expires` `expires` BIGINT UNSIGNED NOT NULL "); + + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; + +} |