Changeset 10

Show
Ignore:
Timestamp:
11/19/08 13:22:49 (17 years ago)
Author:
yumileroy
Message:

[svn] - add sql updates for character database forgotten in previous commit

Original author: w12x
Date: 2008-10-05 09:44:08-05:00

Location:
trunk/sql
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/sql/characters.sql

    r2 r10  
    5454  `wons_week` int(10) unsigned NOT NULL default '0', 
    5555  `played_season` int(10) unsigned NOT NULL default '0', 
    56   `wons_season` int(10) unsigned NOT NULL default '0' 
     56  `wons_season` int(10) unsigned NOT NULL default '0', 
     57  `points_to_add` int(10) unsigned NOT NULL default '0' 
    5758) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
    5859 
     
    12091210/*!40000 ALTER TABLE `petition_sign` ENABLE KEYS */; 
    12101211UNLOCK TABLES; 
     1212 
     1213-- 
     1214-- Table structure for table `saved_variables` 
     1215-- 
     1216DROP TABLE IF EXISTS `saved_variables`; 
     1217CREATE TABLE `saved_variables` (                                                                              
     1218    `NextArenaPointDistributionTime` timestamp NOT NULL 
     1219) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Variable Saves'; 
     1220 
     1221-- 
     1222-- Dumping data for table `saved_variables` 
     1223-- 
     1224 
     1225LOCK TABLES `saved_variables` WRITE; 
     1226/*!40000 ALTER TABLE `saved_variables` DISABLE KEYS */; 
     1227/*!40000 ALTER TABLE `saved_variables` ENABLE KEYS */; 
     1228UNLOCK TABLES; 
    12111229/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 
    12121230