r55593 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r55592‎ | r55593 | r55594 >
Date:14:49, 26 August 2009
Author:freakolowsky
Status:ok
Tags:
Comment:
l10n added to oracle tables.sql
Modified paths:
  • /trunk/phase3/maintenance/ora/tables.sql (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/ora/tables.sql
@@ -46,7 +46,7 @@
4747 CREATE TABLE &mw_prefix.user_properties (
4848 up_user NUMBER NOT NULL,
4949 up_property VARCHAR2(32) NOT NULL,
50 - up_value BLOB
 50+ up_value CLOB
5151 );
5252 CREATE UNIQUE INDEX &mw_prefix.user_properties_u01 on &mw_prefix.user_properties (up_user,up_property);
5353 CREATE INDEX &mw_prefix.user_properties_i01 on &mw_prefix.user_properties (up_property);
@@ -565,6 +565,13 @@
566566 CREATE INDEX si_title_idx ON &mw_prefix.searchindex(si_title) INDEXTYPE IS ctxsys.context;
567567 CREATE INDEX si_text_idx ON &mw_prefix.searchindex(si_text) INDEXTYPE IS ctxsys.context;
568568
 569+CREATE TABLE &mw_prefix.l10n_cache (
 570+ lc_lang varchar2(32) NOT NULL,
 571+ lc_key varchar2(255) NOT NULL,
 572+ lc_value clob NOT NULL
 573+);
 574+CREATE INDEX &mw_prefix.l10n_cache_u01 ON &mw_prefix.l10n_cache (lc_lang, lc_key);
 575+
569576 CREATE TABLE &mw_prefix.wiki_field_info_full (
570577 table_name VARCHAR2(35) NOT NULL,
571578 column_name VARCHAR2(35) NOT NULL,

Status & tagging log