create_db.mysql
上传用户:xuanqunsh
上传日期:2007-01-04
资源大小:58k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. # ---------------------------------------------------------------
  2. # phpop
  3. # A WWW based POP email management tool 
  4. # Copyright (C) 1998  Padraic Renaghan
  5. # Licensed under terms of GNU General Public License
  6. # (see http://renaghan.com/phpop/LICENSE)
  7. # ---------------------------------------------------------------
  8. # Database create script for MySQL databases.
  9. # $Id: create_db.mysql,v 1.1 2000/04/12 23:23:19 prenagha Exp $
  10. # ---------------------------------------------------------------
  11. #
  12. # Table structure for table 'active_sessions'
  13. #
  14. CREATE TABLE active_sessions (
  15.   sid varchar(32) DEFAULT '' NOT NULL,
  16.   name varchar(32) DEFAULT '' NOT NULL,
  17.   val text,
  18.   changed varchar(14) DEFAULT '' NOT NULL,
  19.   PRIMARY KEY (name,sid),
  20.   KEY changed (changed)
  21. );
  22. # -- end