Files
Aurora.3/SQL/migrate/V055__cargo_db_errors.sql
Werner 0c61353287 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>
2020-08-01 01:19:22 +02:00

7 lines
185 B
SQL

--
-- 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`;