anonymous wrote on Saturday, July 18, 2009:
Can someone include into the CVS DB the field: "ssi_relayhealth" into the "users" table with a "longtext" type?
This will get RelayHealth ePrescribing to work when enabled within /includes/config.php
anonymous wrote on Saturday, July 18, 2009:
Can someone include into the CVS DB the field: "ssi_relayhealth" into the "users" table with a "longtext" type?
This will get RelayHealth ePrescribing to work when enabled within /includes/config.php
bradymiller wrote on Monday, July 20, 2009:
hey,
We should forward/email this possible bug to the author of the eprescribing stuff. I’ve forgotten who developed this stuff… anybody know? Would be a nice training run of them submitting the fixing patch through our patch tracker.
-brady
whimmel wrote on Monday, July 20, 2009:
The code for this field is already in 2_9_0-to-3_0_0_upgrade.sql but I guess it didn’t make it into the regular database.sql file:
#IfMissingColumn users ssi_relayhealth
ALTER TABLE users
ADD ssi_relayhealth varchar(64) NULL;
#EndIf
btw longtext is really overkill since all of the RH ID numbers I’ve seen so far are 5 digits.
sunsetsystems wrote on Monday, July 20, 2009:
I have just added the missing column to database.sql in the head and rel-301 branches.