-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a couple of fields to the PreviousConTracks table. Added fix fo…
…r issue #134.
- Loading branch information
1 parent
e001968
commit a4237d6
Showing
3 changed files
with
25 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## This script adds a missing field to the PreviousConTracks table. | ||
## | ||
## Created by Leane Verhulst on August 27, 2021 | ||
## Copyright (c) 2021 by Peter Olszowka. All rights reserved. See copyright document for more details. | ||
## | ||
|
||
## Add missing field | ||
ALTER TABLE `PreviousConTracks` ADD COLUMN `display_order` int(11) NOT NULL AFTER `trackname`; | ||
ALTER TABLE `PreviousConTracks` ADD COLUMN `selfselect` tinyint(1) NOT NULL AFTER `display_order`; | ||
|
||
|
||
|
||
INSERT INTO PatchLog (patchname) VALUES ('74CAP_update_previouscontracks.sql'); |
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