[Rt-commit] [svn] r761 - rt/branches/rt-3.3/etc
jesse at pallas.eruditorum.org
jesse at pallas.eruditorum.org
Tue Apr 27 23:16:36 EDT 2004
Author: jesse
Date: Tue Apr 27 23:16:35 2004
New Revision: 761
Modified:
rt/branches/rt-3.3/etc/schema.Pg
Log:
Updating schema for 3.3 to use 'integer' on postgres rather than int2 on Andrew Sullivan's recommendation
Modified: rt/branches/rt-3.3/etc/schema.Pg
==============================================================================
--- rt/branches/rt-3.3/etc/schema.Pg (original)
+++ rt/branches/rt-3.3/etc/schema.Pg Tue Apr 27 23:16:35 2004
@@ -57,7 +57,7 @@
Created TIMESTAMP NULL ,
LastUpdatedBy integer NOT NULL DEFAULT 0 ,
LastUpdated TIMESTAMP NULL ,
- Disabled int2 NOT NULL DEFAULT 0 ,
+ Disabled integer NOT NULL DEFAULT 0 ,
PRIMARY KEY (id)
);
@@ -108,7 +108,7 @@
id INTEGER DEFAULT nextval('principals_id_seq') not null,
PrincipalType VARCHAR(16) not null,
ObjectId integer,
- Disabled int2 NOT NULL DEFAULT 0 ,
+ Disabled integer NOT NULL DEFAULT 0 ,
PRIMARY KEY (id)
);
@@ -301,7 +301,7 @@
MemberId int,
Via int,
ImmediateParentId int,
- Disabled int2 NOT NULL DEFAULT 0 ,
+ Disabled integer NOT NULL DEFAULT 0 ,
PRIMARY KEY (id)
);
@@ -408,7 +408,7 @@
LastUpdated TIMESTAMP NULL ,
Creator integer NOT NULL DEFAULT 0 ,
Created TIMESTAMP NULL ,
- Disabled int2 NOT NULL DEFAULT 0 ,
+ Disabled integer NOT NULL DEFAULT 0 ,
PRIMARY KEY (id)
);
@@ -525,7 +525,7 @@
Name varchar(200) NULL ,
Type varchar(200) NULL ,
MaxValues integer NOT NULL DEFAULT 0 ,
- Repeated int2 NOT NULL DEFAULT 0 ,
+ Repeated integer NOT NULL DEFAULT 0 ,
Pattern varchar(255) NULL ,
LookupType varchar(255) NOT NULL ,
Description varchar(255) NULL ,
@@ -535,7 +535,7 @@
Created TIMESTAMP NULL ,
LastUpdatedBy integer NOT NULL DEFAULT 0 ,
LastUpdated TIMESTAMP NULL ,
- Disabled int2 NOT NULL DEFAULT 0 ,
+ Disabled integer NOT NULL DEFAULT 0 ,
PRIMARY KEY (id)
);
More information about the Rt-commit
mailing list