/[refeed]/trunk/introspect/create.mysql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/introspect/create.mysql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Wed Jul 5 00:27:49 2006 UTC (17 years, 10 months ago) by dpavlin
File size: 292 byte(s)
make working copy of trunk
1 DROP TABLE IF EXISTS query_log;
2
3 CREATE TABLE query_log (
4 id INT AUTO_INCREMENT NOT NULL,
5 stamp DATETIME,
6 context VARCHAR(255),
7 duration FLOAT,
8 query TEXT,
9 query_gen TEXT,
10
11 PRIMARY KEY (id),
12 INDEX context (context)
13 ) TYPE=MyISAM;

  ViewVC Help
Powered by ViewVC 1.1.26