PDA

View Full Version : Running a query


HellFear
08-16-2004, 03:57 PM
How do I run a query on Vbulletin ?

I found a hack, and it tells me to do this.


Run the following two queries
Query #1

create table customsiguploader
( userid int unsigned not null default 0
, siguploaderdata mediumtext not null
, dateline int unsigned not null default 0
, filename varchar(100) not null default ''
, visible smallint not null default 1
, filesize int unsigned not null default 0
, primary key (userid)
)


Query #2

ALTER TABLE usergroup ADD (
siguploadermaxwidth SMALLINT UNSIGNED NOT NULL DEFAULT '0',
siguploadermaxheight SMALLINT UNSIGNED NOT NULL DEFAULT '0',
siguploadermaxsize INT UNSIGNED NOT NULL DEFAULT '0',
siguploaderpermissions INT(10) UNSIGNED NOT NULL DEFAULT '0'
)

Dean C
08-16-2004, 05:08 PM
Read above

HellFear
08-17-2004, 02:19 PM
Read above
Thanks for the help. :)

Dean C
08-17-2004, 02:28 PM
You're welcome.