File:  [Local Repository] / db / prgsrc / lastq.sql
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Mon Dec 31 01:01:46 2001 UTC (22 years, 4 months ago) by roma7
Branches: MAIN
CVS tags: HEAD
Adding lastq.sql

drop table if exists lastqueries ;
CREATE TABLE lastqueries (
		id 	INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
			KEY idkey (id),
		sstr 	CHAR(50),
		questions  BLOB,
		allnf  BLOB,
		t      TIMESTAMP
);

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