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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;