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

[svn] * Updated to 6743 and 685

Moved language id used by Arena to a higher place to solve conflicts
Added the empty script folders

Original author: Neo2003
Date: 2008-10-09 08:42:22-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/bindings/scripts/sql/scriptdev2_structure.sql

    r5 r28  
    7474DROP TABLE IF EXISTS `script_texts`; 
    7575CREATE TABLE `script_texts` ( 
    76 `id` int(11) unsigned NOT NULL auto_increment COMMENT 'Identifier', 
    77 `sound` int(11) unsigned NOT NULL default '0', 
    78 `type` int(11) unsigned NOT NULL default '0', 
    79 `language` int(11) unsigned NOT NULL default '0', 
    80 `text` varchar(255) NOT NULL default '', 
    81 `comment` varchar(255) NOT NULL default '', 
    82 PRIMARY KEY  (`id`) 
     76  `entry` mediumint(8) NOT NULL, 
     77  `content_default` text NOT NULL, 
     78  `content_loc1` text, 
     79  `content_loc2` text, 
     80  `content_loc3` text, 
     81  `content_loc4` text, 
     82  `content_loc5` text, 
     83  `content_loc6` text, 
     84  `content_loc7` text, 
     85  `content_loc8` text, 
     86  `sound` mediumint(8) unsigned NOT NULL default '0', 
     87  `type` tinyint unsigned NOT NULL default '0', 
     88  `language` tinyint unsigned NOT NULL default '0', 
     89  `comment` text, 
     90  PRIMARY KEY  (`entry`) 
    8391) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts'; 
    8492 
    85  
    86 DROP TABLE IF EXISTS `script_localized_texts`; 
    87 CREATE TABLE `script_localized_texts` ( 
    88 `id` int(11) unsigned NOT NULL auto_increment COMMENT 'Identifier', 
    89 `locale_1` varchar(255) NOT NULL default '', 
    90 `locale_2` varchar(255) NOT NULL default '', 
    91 `locale_3` varchar(255) NOT NULL default '', 
    92 `locale_4` varchar(255) NOT NULL default '', 
    93 `locale_5` varchar(255) NOT NULL default '', 
    94 `locale_6` varchar(255) NOT NULL default '', 
    95 `locale_7` varchar(255) NOT NULL default '', 
    96 `locale_8` varchar(255) NOT NULL default '', 
    97 `comment` varchar(255) NOT NULL default '' COMMENT 'Text Comment', 
    98 PRIMARY KEY  (`id`)             
    99 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Localized Script Text'; 
    100  
     93DROP TABLE IF EXISTS `custom_texts`; 
     94CREATE TABLE `custom_texts` ( 
     95  `entry` mediumint(8) NOT NULL, 
     96  `content_default` text NOT NULL, 
     97  `content_loc1` text, 
     98  `content_loc2` text, 
     99  `content_loc3` text, 
     100  `content_loc4` text, 
     101  `content_loc5` text, 
     102  `content_loc6` text, 
     103  `content_loc7` text, 
     104  `content_loc8` text, 
     105  `sound` mediumint(8) unsigned NOT NULL default '0', 
     106  `type` tinyint unsigned NOT NULL default '0', 
     107  `language` tinyint unsigned NOT NULL default '0', 
     108  `comment` text, 
     109  PRIMARY KEY  (`entry`) 
     110) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Custom Texts'; 
    101111 
    102112DROP TABLE IF EXISTS `script_db_version`;