mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-30 20:22:32 +00:00
* Adds public notes * oops sorry CI * AA review * head of staff requests * darkmode + disclaimer
6 lines
212 B
SQL
6 lines
212 B
SQL
# Updating DB from 64-65 ~Contrabang
|
|
# Adds a new column to the notes table for public notes
|
|
ALTER TABLE `notes`
|
|
ADD COLUMN `public` TINYINT NOT NULL DEFAULT 0 AFTER `deletedby`,
|
|
ADD INDEX `public` (`public`);
|