migrate/1724663553_change_table_dynamic_adv.up.sql
2024-08-26 17:21:43 +08:00

5 lines
349 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

ALTER TABLE `ufutx_dynamic_adv`
MODIFY COLUMN `type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '类型 0app内部 1外部链接' AFTER `icon`,
MODIFY COLUMN `page` int(10) NULL COMMENT '第几页' AFTER `type`,
MODIFY COLUMN `sort` int(10) NULL COMMENT '第几个' AFTER `page`,
ADD COLUMN `address` text NULL COMMENT '外部地址' AFTER `sort`;