summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-05-01 16:05:26 +0000
committerDries Buytaert <dries@buytaert.net>2005-05-01 16:05:26 +0000
commit15cf9e1a72601ea74c6e5937b97969722e6d6a22 (patch)
treef3d45416bfd40784bb7f6fc9648e47dfdbabce4b /database/database.pgsql
parent4d80b374e998bd0370f7730d2a4cd40bf1c3cab7 (diff)
downloadbrdo-15cf9e1a72601ea74c6e5937b97969722e6d6a22.tar.gz
brdo-15cf9e1a72601ea74c6e5937b97969722e6d6a22.tar.bz2
- Patch #21252 by patryk: increased the length of the location field in the locale_sources table.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index e3c4fea13..721316367 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -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)
);