Skip to content

Commit

Permalink
Version 1.6 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zmegolaz committed Mar 20, 2014
1 parent 5c275d4 commit e630847
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.6 - 2014-03-17
NOTE: This version uses a new database structure, make sure to update! An SQL file to use when updating is provided. Apply database updates before rehashing if update is done on a live bot.
Features
* KPM is now displayed when an answer was correct, and top KPM is saved in the database.
Version 1.5 - 2014-01-03
NOTE: This version uses a new database structure, make sure to update! An SQL file to use when updating is provided. Apply database updates before rehashing if update is done on a live bot.
Changes
Expand Down
1 change: 1 addition & 0 deletions frogesport.sql
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ CREATE TABLE IF NOT EXISTS `users` (
`user_lastactive` int(16) NOT NULL,
`user_customclass` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
`user_lastactive_chan` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`user_kpm_max` double NOT NULL,
PRIMARY KEY (`uid`),
KEY `user_nick` (`user_nick`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
Expand Down
3 changes: 3 additions & 0 deletions upgrades/1.5_to_1.6.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Version 1.5 -> 1.6

ALTER TABLE `users` ADD `user_kpm_max` DOUBLE NOT NULL ;

0 comments on commit e630847

Please sign in to comment.