Files
Paradise/SQL/updates/55-56.sql
AffectedArc07 f3a24e24bb Improves note deletions (#25460)
* Improves not deletions

* balls

* balls the second
2024-05-17 13:01:13 +00:00

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