From 78b052a6af5fc7c87c807821bfc9267f8007ed7b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 17 Aug 2004 21:35:26 +0000 Subject: - The upload (filehandler) module has landed! --- database/database.mysql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'database/database.mysql') diff --git a/database/database.mysql b/database/database.mysql index 75f1b51c5..f5c3cc967 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -207,6 +207,21 @@ CREATE TABLE directory ( PRIMARY KEY (link) ) TYPE=MyISAM; +-- +-- Table structure for table 'files' +-- + +CREATE TABLE files ( + fid int(10) unsigned NOT NULL default '0', + nid int(10) unsigned NOT NULL default '0', + filename varchar(255) NOT NULL default '', + filepath varchar(255) NOT NULL default '', + filemime varchar(255) NOT NULL default '', + filesize int(10) unsigned NOT NULL default '0', + list tinyint(1) unsigned NOT NULL default '0', + PRIMARY KEY (fid) +) TYPE=MyISAM; + -- -- Table structure for table 'filter_formats' -- -- cgit v1.2.3