mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
8 lines
No EOL
197 B
Ruby
8 lines
No EOL
197 B
Ruby
module Sequel::Plugins::CreateTimestamp
|
|
module InstanceMethods
|
|
def before_create
|
|
self.created_at = Time.now if respond_to?(:created_at) && !self.created_at
|
|
super
|
|
end
|
|
end
|
|
end |