File:  [Local Repository] / db / prgsrc / hash.sql
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Sun Apr 20 08:14:06 2003 UTC (21 years ago) by roma7
Branches: MAIN
CVS tags: HEAD
hash.sql added

drop table if exists hash ;
CREATE TABLE hash (
		id 	INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
			KEY idkey (id),
		query 	CHAR(255),
		      key sstrkey (query),
		page	MEDIUMTEXT,
		times 	INT,
		t      TIMESTAMP
);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>