Files
ppanel-web/migrations/mysql/02119_user_subscribe_note.sql
T
Ember Moth 2744c70c5c Initial
2026-07-05 20:27:58 +08:00

11 lines
218 B
SQL

-- migrate:up
ALTER TABLE `user_subscribe`
ADD COLUMN `note` VARCHAR(500) NOT NULL DEFAULT ''
COMMENT 'User note for subscription'
AFTER `status`;
-- migrate:down
ALTER TABLE `user_subscribe`
DROP COLUMN `note`;