mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 20:53:34 +00:00
8 lines
300 B
SQL
8 lines
300 B
SQL
# Updating DB from 55-56 ~AffectedArc07
|
|
# Adds a new column to the notes table for tracking deleted notes
|
|
ALTER TABLE `notes`
|
|
ADD COLUMN `deleted` TINYINT NOT NULL DEFAULT 0 AFTER `automated`,
|
|
ADD COLUMN `deletedby` VARCHAR(32) NULL DEFAULT NULL AFTER `deleted`,
|
|
ADD INDEX `deleted` (`deleted`);
|
|
|