add user subscribe note

This commit is contained in:
lain
2025-10-23 08:47:11 -03:00
committed by Leif Draven
parent a5abbc1dd3
commit d8e2e81688
8 changed files with 118 additions and 0 deletions
@@ -0,0 +1,2 @@
ALTER TABLE `user_subscribe`
DROP COLUMN `note`;
@@ -0,0 +1,4 @@
ALTER TABLE `user_subscribe`
ADD COLUMN `note` VARCHAR(500) NOT NULL DEFAULT ''
COMMENT 'User note for subscription'
AFTER `status`;