mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 09:55:16 +08:00
5 lines
184 B
SQL
5 lines
184 B
SQL
-- 给gen_table_column表新增column_max_length字段
|
|
ALTER TABLE `gen_table_column`
|
|
ADD COLUMN `column_max_length` int DEFAULT NULL COMMENT '字符最大长度'
|
|
AFTER `column_type`;
|