installsql.php
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

PHP

  1. <?php
  2. /*
  3.     [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
  4. This is NOT a freeware, use is subject to license terms
  5.     时间:2007年12月
  6.     描述:
  7. */
  8. $sql = "
  9. DROP TABLE IF EXISTS ".$prefix."sort;
  10. CREATE TABLE ".$prefix."sort (
  11.     sid int(10) unsigned NOT NULL auto_increment,
  12.     sname varchar(30) NOT NULL ,
  13.     slevel int(1) NOT NULL ,
  14.     sparent int(10) NOT NULL ,
  15.     seq int(8) NOT NULL ,
  16.     PRIMARY KEY  (`sid`)
  17.   ) TYPE=MyISAM COMMENT='保存分类';
  18.   DROP TABLE IF EXISTS ".$prefix."revert;
  19.   CREATE TABLE ".$prefix."revert (
  20.     id int(10) unsigned NOT NULL auto_increment,
  21.     mid int(10) NOT NULL,
  22.     username varchar(100) NOT NULL ,
  23.     content varchar(250) NOT NULL ,
  24.     date int(10) NOT NULL,
  25.     ip varchar(30) NOT NULL,
  26.     PRIMARY KEY  (`id`)
  27.   ) TYPE=MyISAM COMMENT='保存回复信息';
  28. DROP TABLE IF EXISTS ".$prefix."city;
  29. CREATE TABLE ".$prefix."city (
  30. cid int(10) unsigned NOT NULL auto_increment,
  31. cname varchar(30) NOT NULL ,
  32.   clevel int(1) NOT NULL ,
  33.   cparent int(10) NOT NULL ,
  34. seq int(8) NOT NULL ,
  35.   PRIMARY KEY  (cid)
  36. ) TYPE=MyISAM COMMENT='保存城市';
  37.    
  38.   DROP TABLE IF EXISTS ".$prefix."setting;
  39.   CREATE TABLE ".$prefix."setting (
  40.     id int(3) unsigned NOT NULL auto_increment,
  41.     list_num int(3) NOT NULL ,
  42.     new_message_num int(3) NOT NULL,
  43.     hot_message_num int(3) NOT NULL,
  44.     sort_update_num int(3) NOT NULL ,
  45.     sort_num int(3) NOT NULL,
  46.     vouch_message_num int(3) NOT NULL,
  47.     city varchar(10) NOT NULL,
  48.     day int(3) NOT NULL,
  49.     PRIMARY KEY  (`id`)
  50.   ) TYPE=MyISAM COMMENT='保存系统参数设置';
  51.   
  52.   insert into ".$prefix."setting (list_num,new_message_num,hot_message_num,sort_update_num,sort_num,vouch_message_num,city,day) values ('10','5','5','5','5','5','1','30');
  53.    
  54.   DROP TABLE IF EXISTS ".$prefix."message;
  55.   CREATE TABLE ".$prefix."message (
  56.     mid int(10) unsigned NOT NULL auto_increment,
  57.     sid int(10) NOT NULL,
  58.     cid int(10) NOT NULL ,
  59.     username varchar(100) NOT NULL ,
  60.     title varchar(100) NOT NULL,
  61.     content text NOT NULL,
  62.     picture varchar(100) NOT NULL,
  63.     oprice int(10) NOT NULL ,
  64.     nprice int(10) NOT NULL ,
  65.     btime int(10) NOT NULL ,
  66.     etime int(10) NOT NULL ,
  67.     hits int(10) NOT NULL,
  68.     vouch int(1) NOT NULL,
  69.     status int(1) NOT NULL,
  70.     tag varchar(20) NOT NULL,
  71.     PRIMARY KEY  (`mid`)
  72.   ) TYPE=MyISAM COMMENT='存储用户发表的信息';
  73. ";
  74. ?>