diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-02-21 19:01:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-02-21 19:01:04 +0000 |
commit | 9d3d374bc885b8771a013352b8e2c6b7625324d8 (patch) | |
tree | ae441fee7e34f19d8752e2eec756b7a048176cbd /database | |
parent | 32e46a375dcd93dbd8190812bf508bb0881b1919 (diff) | |
download | brdo-9d3d374bc885b8771a013352b8e2c6b7625324d8.tar.gz brdo-9d3d374bc885b8771a013352b8e2c6b7625324d8.tar.bz2 |
- Patch by Killes: drop the 'attributes' field from the 'users' table. It
is no longer used.
Diffstat (limited to 'database')
-rw-r--r-- | database/database.mssql | 1 | ||||
-rw-r--r-- | database/database.mysql | 1 | ||||
-rw-r--r-- | database/database.pgsql | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/database/database.mssql b/database/database.mssql index 77a022002..a9b313449 100644 --- a/database/database.mssql +++ b/database/database.mssql @@ -202,7 +202,6 @@ CREATE TABLE [dbo].[node] ( [promote] [int] NOT NULL , [moderate] [int] NOT NULL , [users] [text] NULL , - [attributes] [varchar] (255) NULL , [teaser] [text] NOT NULL , [body] [text] NOT NULL , [changed] [int] NOT NULL , diff --git a/database/database.mysql b/database/database.mysql index bcc69cadd..b340c5d12 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -288,7 +288,6 @@ CREATE TABLE node ( promote int(2) NOT NULL default '0', moderate int(2) NOT NULL default '0', users longtext NOT NULL, - attributes varchar(255) NOT NULL default '', teaser longtext NOT NULL, body longtext NOT NULL, changed int(11) NOT NULL default '0', diff --git a/database/database.pgsql b/database/database.pgsql index 636f51e6d..030d3b226 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -277,7 +277,6 @@ CREATE TABLE node ( promote integer NOT NULL default '0', moderate integer NOT NULL default '0', users text NOT NULL default '', - attributes varchar(255) NOT NULL default '', teaser text NOT NULL default '', body text NOT NULL default '', changed integer NOT NULL default '0', |