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.sql

    r8406 r8630  
    11CREATE TABLE IF NOT EXISTS `olympiad_nobles` ( 
    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, 
    9   `competitions_done_week` tinyint(3) NOT NULL default 0, 
    10   `competitions_done_week_classed` tinyint(3) NOT NULL default 0, 
    11   `competitions_done_week_non_classed` tinyint(3) NOT NULL default 0, 
    12   `competitions_done_week_team` tinyint(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, 
     9  `competitions_done_week` tinyint(3) unsigned NOT NULL DEFAULT 0, 
     10  `competitions_done_week_classed` tinyint(3) unsigned NOT NULL DEFAULT 0, 
     11  `competitions_done_week_non_classed` tinyint(3) unsigned NOT NULL DEFAULT 0, 
     12  `competitions_done_week_team` tinyint(3) unsigned NOT NULL DEFAULT 0, 
    1313  PRIMARY KEY (`charId`) 
    1414) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
Note: See TracChangeset for help on using the changeset viewer.