forked from halo-battle/game
Mise à jour du schéma de BDD car TINYINT se limite a 127 max, or on a 150 images
This commit is contained in:
parent
93dd3e187a
commit
cfa44975d3
@ -608,7 +608,7 @@ CREATE TABLE IF NOT EXISTS `planete` (
|
|||||||
`isolement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
|
`isolement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
|
||||||
`nom_planete` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
|
`nom_planete` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
|
||||||
`moral` float NOT NULL DEFAULT 0.5,
|
`moral` float NOT NULL DEFAULT 0.5,
|
||||||
`image` tinyint(4) NOT NULL DEFAULT 0,
|
`image` tinyint unsigned NOT NULL DEFAULT 0,
|
||||||
`cases` int(11) NOT NULL DEFAULT 0,
|
`cases` int(11) NOT NULL DEFAULT 0,
|
||||||
`debris_met` bigint(20) NOT NULL DEFAULT 0,
|
`debris_met` bigint(20) NOT NULL DEFAULT 0,
|
||||||
`debris_cri` bigint(20) NOT NULL DEFAULT 0,
|
`debris_cri` bigint(20) NOT NULL DEFAULT 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user