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.
 
 
webcrawler/sql/new.sql

20 lines
413 B

--菜单表
create table menu
(
id int auto_increment--自增主键
primary key,
href varchar(32) not null,--菜单超链接
menu_name varchar(10) not null,--菜单名
icon varchar(20) null,--菜单图标
parent_id int not null,--父菜单id
menu_level int not null,--菜单树深度
sort int not null,--排序
constraint menu_href_uindex
unique (href)
)
engine=InnoDB
;
--thrift服务器表
create