Skip to content
Snippets Groups Projects
Commit 15cf9e1a authored by Dries Buytaert's avatar Dries Buytaert
Browse files

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

parent 4d80b374
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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)
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment