drop table if exists cdb_photo_info;
create table cdb_photo_info (
id int(8) not null auto_increment,
uname varchar(50) binary,
name varchar(30),
fname varchar(100),
istop int(8) not null default '0',
wdate date,
info varchar(120),
photo_type int(11) not null default '1',
`password` varchar(12) not null default 'ISNULL',
index ID (id))
ENGINE=MyISAM DEFAULT CHARSET=gbk;