botpop/plugins/points/PointModel.rb
2015-09-23 23:07:25 +02:00

13 lines
175 B
Ruby

require 'sequel'
class Point < Sequel::Model
def before_save
return false if super == false
self.created_at = Time.now
end
set_dataset Base::DB[:points]
end