create table s_dir(dir_id int not null primary key auto_increment,parent_id int not null default -1 references s_dir(dir_id),path varchar(255) not null,title varchar(96) not null,css_url varchar(255),keywords_str text )