You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
308 B

-- -----------------------------------
-- 新增路由字段
-- -----------------------------------
ALTER TABLE [blade_top_menu] ADD [path] nvarchar(255)
GO
EXEC sp_addextendedproperty
'MS_Description', N'顶部菜单路由',
'SCHEMA', N'dbo',
'TABLE', N'blade_top_menu',
'COLUMN', N'path';