- Patch #21252 by patryk: increased the length of the location field in the locale_sources table.

4.7.x
Dries Buytaert 2005-05-01 16:05:26 +00:00
parent 4d80b374e9
commit 15cf9e1a72
2 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ CREATE TABLE locales_meta (
CREATE TABLE locales_source (
lid int(11) NOT NULL auto_increment,
location varchar(128) NOT NULL default '',
location varchar(256) NOT NULL default '',
source blob NOT NULL,
PRIMARY KEY (lid)
) TYPE=MyISAM;

View File

@ -326,7 +326,7 @@ CREATE TABLE locales_meta (
CREATE TABLE locales_source (
lid SERIAL,
location varchar(128) NOT NULL default '',
location varchar(256) NOT NULL default '',
source text NOT NULL,
PRIMARY KEY (lid)
);