diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-05-03 05:19:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-05-03 05:19:34 +0000 |
commit | c085f128688492499aa6a9c5a2239cdb572795f6 (patch) | |
tree | 2f77b61cdef595520b7ea89691abe7b04bc80501 /database/database.pgsql | |
parent | 1261364dd1f3000110b90ea79c09cd272f93fede (diff) | |
download | brdo-c085f128688492499aa6a9c5a2239cdb572795f6.tar.gz brdo-c085f128688492499aa6a9c5a2239cdb572795f6.tar.bz2 |
- Patch #21252 by patryk: fixed size of location field.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql index 721316367..67f7ed631 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(256) NOT NULL default '', + location varchar(255) NOT NULL default '', source text NOT NULL, PRIMARY KEY (lid) ); |