actually, I meant I would post and anyone could tell me wtf is wrong or what needs to be done next
![Razz](images/smiles/icon_razz.gif)
--
-- Table structure for table 'archives_files'
--
CREATE TABLE archives_files (
fileID int(11) NOT NULL auto_increment,
author text NOT NULL,
`type` smallint(6) NOT NULL default '0',
createDate bigint(20) NOT NULL default '0',
updateDate bigint(20) NOT NULL default '0',
filename text NOT NULL,
secondname text NOT NULL,
mainpath text NOT NULL,
secondpath text NOT NULL,
title text NOT NULL,
description text NOT NULL,
screenArray text NOT NULL,
depth tinyint(4) NOT NULL default '0',
comments smallint(6) NOT NULL default '0',
votes int(11) NOT NULL default '0',
voteSum int(11) NOT NULL default '0',
coauth1 int(11) NOT NULL default '0',
coauth2 int(11) NOT NULL default '0',
coauth3 int(11) NOT NULL default '0',
dlCount int(11) NOT NULL default '0',
pageViews bigint(20) NOT NULL default '0',
reviewcount int(11) NOT NULL default '0',
commentArray text NOT NULL,
reviewArray text NOT NULL,
UNIQUE KEY fileID (fileID)
)
Advertisement