mikeh 01/06/20 13:03:35 Modified: conf/torque/templates/sql/base/postgresql db.props Log: added more types for postgres Revision Changes Path 1.2 +7 -7 jakarta-turbine/conf/torque/templates/sql/base/postgresql/db.props Index: db.props =================================================================== RCS file: /home/cvs/jakarta-turbine/conf/torque/templates/sql/base/postgresql/db.props,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- db.props 2000/11/30 22:08:36 1.1 +++ db.props 2001/06/20 20:03:34 1.2 @@ -2,12 +2,12 @@ # JDBC to PostgreSQL mappings. BIT = -TINYINT = -SMALLINT = +TINYINT = int2 +SMALLINT = int2 INTEGER = integer -BIGINT = -FLOAT = -REAL = +BIGINT = int4 +FLOAT = float +REAL = float DOUBLE = @@ -16,8 +16,8 @@ CHAR = varchar VARCHAR = varchar LONGVARCHAR = varchar -DATE = -TIME = +DATE = date +TIME = time TIMESTAMP = timestamp BINARY = VARBINARY = oid --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
