Fix SQL migrations (#7194)

This commit is contained in:
Erki
2019-10-19 00:00:46 +03:00
committed by GitHub
parent fa84a25cb5
commit 29fdefbd8e
2 changed files with 6 additions and 1 deletions

View File

@@ -253,7 +253,6 @@ CREATE TABLE `ss13_player_pai` (
CREATE TABLE `ss13_player_preferences` (
`ckey` varchar(32) NOT NULL,
`ooccolor` text,
`clientfps` int(11) DEFAULT '0',
`lastchangelog` text,
`UI_style` text,
`current_character` int(11) DEFAULT '0',

View File

@@ -0,0 +1,6 @@
--
-- Complimentary of PR #7127
--
ALTER TABLE `ss13_player_preferences`
ADD `clientfps` INT DEFAULT '0' AFTER `ooccolor`;