Update qbo.rb

This commit is contained in:
2016-05-02 12:18:47 -04:00
parent e935f514c1
commit 47f6a0fa79

View File

@@ -40,4 +40,10 @@ class Qbo < ActiveRecord::Base
def self.get_account
first
end
# Updates last sync time stamp
def self.update_time_stamp
first.last_sync = DateTime.now
first.save
end
end