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

WEB邮件程序

开发平台:

PHP

  1. // ---------------------------------------------------------------
  2. // bookmarker
  3. // A WWW based bookmark management, retrieval, and search tool.
  4. // Copyright (C) 1998  Padraic Renaghan
  5. // Licensed under terms of GNU General Public License
  6. // (see http://www.renaghan.com/bookmarker/source/LICENSE)
  7. // ---------------------------------------------------------------
  8. // Database create script for postgresql databases.
  9. // $Id: create_db.postgresql,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 '',
  16.   name varchar(32) DEFAULT '',
  17.   val text,
  18.   changed varchar(14) DEFAULT '' NOT NULL,
  19.   PRIMARY KEY (sid,name)
  20. );
  21. CREATE INDEX k_changed ON active_sessions USING btree(changed);
  22. // -- END