diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-17 21:35:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-17 21:35:26 +0000 |
commit | 78b052a6af5fc7c87c807821bfc9267f8007ed7b (patch) | |
tree | adbe5a0b21e963f49faff62f7214a1b0147ae6ad /database/database.mysql | |
parent | eeb2b17b7b932152ff951ef9b82f4f5003907242 (diff) | |
download | brdo-78b052a6af5fc7c87c807821bfc9267f8007ed7b.tar.gz brdo-78b052a6af5fc7c87c807821bfc9267f8007ed7b.tar.bz2 |
- The upload (filehandler) module has landed!
Diffstat (limited to 'database/database.mysql')
-rw-r--r-- | database/database.mysql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/database/database.mysql b/database/database.mysql index 75f1b51c5..f5c3cc967 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -208,6 +208,21 @@ CREATE TABLE directory ( ) 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' -- |