Revision 35, 387 bytes
(checked in by yumileroy, 17 years ago)
|
[svn] * Fixing some typos in SQL files.
* Applying proper structure to SQL updates.
* Fixing ImpConfig? compile problems.
* Moving INSTALL to INSTALL.linux to avoid autoconf collisions.
Original author: XTZGZoReX
Date: 2008-10-10 15:20:27-05:00
|
Line | |
---|
1 | ALTER TABLE `arena_team_member` ADD COLUMN `points_to_add` int(10) UNSIGNED NOT NULL DEFAULT '0'; |
---|
2 | DROP TABLE IF EXISTS `saved_variables`; |
---|
3 | CREATE TABLE `saved_variables` ( |
---|
4 | `NextArenaPointDistributionTime` timestamp NOT NULL |
---|
5 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Variable Saves'; |
---|