Displaying 1 result from an estimated 1 matches for "facebook_errors".
2008 Mar 14
14
Facebooker MQ now on RubyForge
...39;' )
t.column(:send_after, :datetime, :null => false, :default =>
Time.at(0)) # Optional date time to wait until you send
t.column( :last_send_attempt, :datetime )
t.column( :send_attempts, :integer, :default => 0 , :null => false
)
t.column( :facebook_errors, :text, :default => "")
t.column( :response_xml, :text, :default => "")
t.timestamps
end
end
def self.down
drop_table :facebook_messages
end
end
3) Cronjob or some other way to fire off FacebookerMqRunner.work()
Misc:
Look in fa...