I was trying to add an decimal field by deploying an new custom object
to a mysql-db and it didn't work. So I was looking, if it is a big work
to chance this.

Changing two little bits of code already did to job for the mysql-db.

In the farcry_core/packages/farcry/alterType.cfc I added on line 279:
//decimal
db.type = 'decimal';
db.length = '15,2';
stPropTypes['decimal'] = duplicate(db);

In the fourq/_fourq/deployType.cfm I added on line 69:
db.decimal = "DECIMAL(15,2)";

I should probably also add in fourq/_fourq/alterType.cfm on line 39:
db.decimal = "[decimal] (15,2)";

and fourq/_fourq/deployArrayTable on line 44:
db.decimal = "DECIMAL (15,2)";


Would you consider to add "Decimal" as a DB-Type format to further releases of your farcry application.

Kind regards
Daniel

---
You are currently subscribed to farcry-dev as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to