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

21 lines
413 B

6 years ago
--
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
;
6 years ago
--thrift服务器表
create
6 years ago