Ignore:
Timestamp:
Jan 16, 2012 7:56:19 AM (4 months ago)
Author:
MELERIX
Message:

STABLE: Sync with BETA [8629]

Location:
trunk/L2J_DataPack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/L2J_DataPack

  • trunk/L2J_DataPack/dist/sql/game/olympiad_nobles_eom.sql

    r8406 r8630  
    11CREATE TABLE IF NOT EXISTS `olympiad_nobles_eom` ( 
    2   `charId` INT UNSIGNED NOT NULL default 0, 
    3   `class_id` tinyint(3) unsigned NOT NULL default 0, 
    4   `olympiad_points` int(10) NOT NULL default 0, 
    5   `competitions_done` smallint(3) NOT NULL default 0, 
    6   `competitions_won` smallint(3) NOT NULL default 0, 
    7   `competitions_lost` smallint(3) NOT NULL default 0, 
    8   `competitions_drawn` smallint(3) NOT NULL default 0, 
     2  `charId` int(10) unsigned NOT NULL DEFAULT 0, 
     3  `class_id` tinyint(3) unsigned NOT NULL DEFAULT 0, 
     4  `olympiad_points` int(10) unsigned NOT NULL DEFAULT 0, 
     5  `competitions_done` smallint(3) unsigned NOT NULL DEFAULT 0, 
     6  `competitions_won` smallint(3) unsigned NOT NULL DEFAULT 0, 
     7  `competitions_lost` smallint(3) unsigned NOT NULL DEFAULT 0, 
     8  `competitions_drawn` smallint(3) unsigned NOT NULL DEFAULT 0, 
    99  PRIMARY KEY (`charId`) 
    1010) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
Note: See TracChangeset for help on using the changeset viewer.