forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
213 changed files
with
5,901 additions
and
2,999 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Updating SQL from 51 to 52 -AffectedArc07 | ||
# Adding all department columns to playtime_history | ||
ALTER TABLE `playtime_history` | ||
ADD COLUMN `time_crew` SMALLINT NOT NULL AFTER `time_living`, | ||
ADD COLUMN `time_special` SMALLINT NOT NULL AFTER `time_crew`, | ||
ADD COLUMN `time_command` SMALLINT NOT NULL AFTER `time_ghost`, | ||
ADD COLUMN `time_engineering` SMALLINT NOT NULL AFTER `time_command`, | ||
ADD COLUMN `time_medical` SMALLINT NOT NULL AFTER `time_engineering`, | ||
ADD COLUMN `time_science` SMALLINT NOT NULL AFTER `time_medical`, | ||
ADD COLUMN `time_supply` SMALLINT NOT NULL AFTER `time_science`, | ||
ADD COLUMN `time_security` SMALLINT NOT NULL AFTER `time_supply`, | ||
ADD COLUMN `time_silicon` SMALLINT NOT NULL AFTER `time_security`, | ||
ADD COLUMN `time_service` SMALLINT NOT NULL AFTER `time_silicon`; |
Oops, something went wrong.