mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 05:52:08 -04:00
11 lines
218 B
SQL
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`;
|
|
|