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, 1 month ago) by roma7
Branches: MAIN
CVS tags: HEAD
hash.sql added

    1: drop table if exists hash ;
    2: CREATE TABLE hash (
    3: 		id 	INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    4: 			KEY idkey (id),
    5: 		query 	CHAR(255),
    6: 		      key sstrkey (query),
    7: 		page	MEDIUMTEXT,
    8: 		times 	INT,
    9: 		t      TIMESTAMP
   10: );

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