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, 6 months ago) by roma7
Branches: MAIN
CVS tags: HEAD
Adding lastq.sql

    1: drop table if exists lastqueries ;
    2: CREATE TABLE lastqueries (
    3: 		id 	INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    4: 			KEY idkey (id),
    5: 		sstr 	CHAR(50),
    6: 		questions  BLOB,
    7: 		allnf  BLOB,
    8: 		t      TIMESTAMP
    9: );

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