feat(DB/Misc): Add state and assignee to bugreport (#25316)

This commit is contained in:
Kitzunu
2026-03-30 22:56:14 +02:00
committed by GitHub
parent 037588ed03
commit dc9efbdff1

View File

@@ -0,0 +1,5 @@
--
ALTER TABLE `bugreport`
ADD COLUMN `State` TINYINT NOT NULL DEFAULT 1,
ADD COLUMN `Assignee` VARCHAR(255) DEFAULT NULL,
ADD COLUMN `Comment` LONGTEXT DEFAULT NULL;