Forum OpenACS Development: Dynamic-types package: correction to metadata-create.sql

Installation of dynamic-types fails with an error about a datatype not being found.

The following change corrects the error:

../packages/dynamic-types/sql/postgresql/metadata-create.sql

@@ -15,7 +15,7 @@
insert into dtype_db_datatypes (datatype, db_type)
values (''integer'', ''integer'');
insert into dtype_db_datatypes (datatype, db_type)
-values (''money'', ''varchar(30)'');
+values (''currency'', ''real'');
insert into dtype_db_datatypes (datatype, db_type)
values (''date'', ''timestamp'');
insert into dtype_db_datatypes (datatype, db_type)