module SQLite3ExtendFunction::Functions::Now

SQLite3ExtendFunction::Functions::Now

Public Class Methods

call() click to toggle source

@return [String]

# File lib/sqlite3_extend_function/functions/now.rb, line 9
def call
  Time.now.strftime('%Y-%m-%d %H:%M:%S.%6N%:z')
end