Thread: SQL Feedback
View Single Post
bl4nk
SourceMod Developer
Join Date: Jul 2007
Old 11-28-2009 , 00:28   Re: SQL Feedback
Reply With Quote #30

Updated to Version 1.2.0

Changelog:
  • Added logging of the server ip and port, and the game's name.
Updating from V1.1.0 or earlier:
If you don't have a previous installation, ignore this section.

Run the following code on your MySQL database with the "feedback" table on it:
Code:
ALTER TABLE `feedback`
ADD `serverip` varchar(16) NOT NULL AFTER `map`,
ADD `serverport` varchar(6) NOT NULL AFTER `serverip`,
ADD `game` varchar(32) NOT NULL AFTER `serverip`;

Last edited by bl4nk; 12-01-2009 at 23:57.
bl4nk is offline