Skip to content

Commit

Permalink
set player's currentBattle default value to NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
Ericgan committed Aug 29, 2011
1 parent 92d3779 commit 5f92b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/install.sql
Expand Up @@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `player` (
`stamina` int(10) unsigned NOT NULL,
`staminaLastUpdate` bigint(10) unsigned NOT NULL,
`defaultDeck` int(10) unsigned NOT NULL DEFAULT '1',
`currentBattle` int(10) unsigned DEFAULT '1',
`currentBattle` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=3 ;

Expand Down

0 comments on commit 5f92b7c

Please sign in to comment.