mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
Expands the cargo table to require the approval of items before they are displayed on the server, enabling the creation of a module in the web interface.
9 lines
356 B
SQL
9 lines
356 B
SQL
--
|
|
-- Combines the ss13_admin and ss13_player table
|
|
--
|
|
ALTER TABLE `ss13_cargo_items`
|
|
ADD COLUMN `created_by` VARCHAR(50) NULL DEFAULT NULL AFTER `order_by`,
|
|
ADD COLUMN `approved_by` VARCHAR(50) NULL DEFAULT NULL AFTER `created_by`,
|
|
ADD COLUMN `approved_at` DATETIME NULL DEFAULT NULL AFTER `created_at`;
|
|
|
|
UPDATE ss13_cargo_items SET approved_at = NOW() |