summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-08-26 18:18:12 +0000
committerDries Buytaert <dries@buytaert.net>2002-08-26 18:18:12 +0000
commita28f8180065e5622c4b4ef11b0276835dd4a9af1 (patch)
tree30f4e48a64864e7db129409e8a7a86df76bd6530 /database/database.pgsql
parent3cdfcaf877cb7e9d31bdc123e263c123b7436929 (diff)
downloadbrdo-a28f8180065e5622c4b4ef11b0276835dd4a9af1.tar.gz
brdo-a28f8180065e5622c4b4ef11b0276835dd4a9af1.tar.bz2
- Changed "$watchdog->message" from type "varchar(255)" to type "text".
Patch by James. For sake of consistency, I updated the MySQL scheme and added a new update entry to "update.php".
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql4
1 files changed, 2 insertions, 2 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index eed263358..7f3c28ea5 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -237,7 +237,7 @@ CREATE TABLE node (
comment integer NOT NULL default '0',
promote integer NOT NULL default '0',
moderate integer NOT NULL default '0',
- users text NOT NULL,
+ users text NOT NULL default '',
attributes varchar(255) NOT NULL default '',
teaser text NOT NULL,
body text NOT NULL,
@@ -509,7 +509,7 @@ CREATE TABLE watchdog (
wid SERIAL,
uid integer NOT NULL default '0',
type varchar(16) NOT NULL default '',
- message varchar(255) NOT NULL default '',
+ message text NOT NULL default '',
location varchar(128) NOT NULL default '',
hostname varchar(128) NOT NULL default '',
timestamp integer NOT NULL default '0',