From: Jeremy Laine Date: Sat, 23 Nov 2002 00:33:35 +0000 (+0000) Subject: initial commit X-Git-Tag: start~38 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=588d5eac34d8f281bf3b06da0079c2517e82b116;p=old-projects.git initial commit --- diff --git a/deptrack/deptrack.sql b/deptrack/deptrack.sql new file mode 100644 index 0000000..7cb646b --- /dev/null +++ b/deptrack/deptrack.sql @@ -0,0 +1,25 @@ +# +# Table structure for table `dep` +# + +CREATE TABLE dep ( + id int(8) NOT NULL auto_increment, + page int(6) NOT NULL default '0', + dep int(6) NOT NULL default '0', + type enum('include','image','link') NOT NULL default 'include', + PRIMARY KEY (id) +) TYPE=MyISAM; +# -------------------------------------------------------- + +# +# Table structure for table `file` +# + +CREATE TABLE file ( + id int(6) NOT NULL auto_increment, + path varchar(255) NOT NULL default '', + type enum('dead','page','include','image') NOT NULL default 'dead', + PRIMARY KEY (id), + UNIQUE KEY path (path) +) TYPE=MyISAM; +