Store Cargo Load Errors in the DB (#9466)

* Store Cargo Load Errors in the DB

* Bump SQL Version number

* Remove displaying db save errors (Already handled by Execute)

Co-authored-by: Werner <Arrow768@users.noreply.github.com>
This commit is contained in:
Werner
2020-08-01 01:19:22 +02:00
committed by GitHub
parent 0381263207
commit 0c61353287
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--
-- Adds a column to ss13_cargo_items which enables the storage of load errors
--
ALTER TABLE `ss13_cargo_items`
ADD COLUMN `error_message` TEXT NULL DEFAULT NULL AFTER `order_by`;