mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 14:02:08 -04:00
9 lines
266 B
SQL
9 lines
266 B
SQL
-- migrate:up
|
|
ALTER TABLE `subscribe`
|
|
ADD COLUMN `show_original_price` TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'display the original price: 0 not display, 1 display' AFTER `created_at`;
|
|
|
|
-- migrate:down
|
|
ALTER TABLE `subscribe`
|
|
DROP COLUMN `show_original_price`;
|
|
|