mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
* 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>
7 lines
185 B
SQL
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`;
|