Depreciated IntegerColumn?

I was away from one of my program for a few months working on another language. I went back into my project and updated to the latest version of XOJO and seen that I could not run it because IntegerColumn has been deprecated. I made most of the changes for deprecated things but this one I cant seem to find information for. Is IntegerColumn just being replaced by DatabaseRow.Column???

DatabaseRow.Column(???).IntegerValue, but “deprecated” is not “removed” so you can ignore this message for the foreseeable future.

Sorry. It was previously deprecated and is now removed. DatabaseRow does not have a property any longer called “IntegerColumn”

Think I may have found the answer. So dbRecord is a DatabaseRow and it was a DatabaseRecord so does this:
dbRecord.IntegerColumn(“dbBudgetFundX”) = iCurrentAccountFundX

need to change to this:
dbRecord.Column(“dbBudgetFundX”).IntegerValue = iCurrentAccountFundX

Thanks.