mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 03:55:05 +01:00
Add back parallax SQL changes
This commit is contained in:
@@ -269,6 +269,7 @@ CREATE TABLE `player` (
|
||||
`fuid` bigint(20) NULL DEFAULT NULL,
|
||||
`fupdate` smallint(4) NULL DEFAULT '0',
|
||||
`afk_watch` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`parallax` tinyint(1) DEFAULT '8',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `ckey` (`ckey`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=32446 DEFAULT CHARSET=latin1;
|
||||
|
||||
@@ -268,6 +268,7 @@ CREATE TABLE `SS13_player` (
|
||||
`fuid` bigint(20) NULL DEFAULT NULL,
|
||||
`fupdate` smallint(4) NULL DEFAULT '0',
|
||||
`afk_watch` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`parallax` tinyint(1) DEFAULT '8',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `ckey` (`ckey`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=32446 DEFAULT CHARSET=latin1;
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
#Updating the SQL from version 8 to version 9. -affectedarc07
|
||||
#Adding new column to contain the parallax value.
|
||||
ALTER TABLE `player`
|
||||
ADD `parallax` tinyint(1) DEFAULT '8' AFTER `fupdate`;
|
||||
Reference in New Issue
Block a user