Adds public notes (#28373)

* Adds public notes

* oops sorry CI

* AA review

* head of staff requests

* darkmode + disclaimer
This commit is contained in:
Contrabang
2025-03-30 19:00:46 +00:00
committed by GitHub
parent cbd53f936a
commit 808553727c
7 changed files with 130 additions and 11 deletions
+5
View File
@@ -0,0 +1,5 @@
# 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`);