Converting unix_t time to something rails understands

I have some data that I want to import into a table. The import file has dates in unix_t time format ( seconds since 1970). How would I convert that to either a datetime value or a string? Is that a magic function somewhere?

I have some data that I want to import into a table. The import file has dates in unix_t time format ( seconds since 1970). How would I convert that to either a datetime value or a string? Is that a magic function somewhere?

Time.at seconds_since_epoch

Best Regards, -Larry

--Greg

Perfect! Thanks Greg, -Larry