- Timestamp:
- 11/19/08 13:22:49 (17 years ago)
- Location:
- trunk/sql
- Files:
-
- 1 added
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/sql/characters.sql
r2 r10 54 54 `wons_week` int(10) unsigned NOT NULL default '0', 55 55 `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' 57 58 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 58 59 … … 1209 1210 /*!40000 ALTER TABLE `petition_sign` ENABLE KEYS */; 1210 1211 UNLOCK TABLES; 1212 1213 -- 1214 -- Table structure for table `saved_variables` 1215 -- 1216 DROP TABLE IF EXISTS `saved_variables`; 1217 CREATE 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 1225 LOCK TABLES `saved_variables` WRITE; 1226 /*!40000 ALTER TABLE `saved_variables` DISABLE KEYS */; 1227 /*!40000 ALTER TABLE `saved_variables` ENABLE KEYS */; 1228 UNLOCK TABLES; 1211 1229 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 1212 1230