Annotation of db/prgsrc/lastq.sql, revision 1.1

1.1     ! roma7       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>