Sha256: 94490c0fe4abd3df825745b1c9ecb49b15d35e83ba879724b8b6775a88d90109
Contents?: true
Size: 375 Bytes
Versions: 14
Compression:
Stored size: 375 Bytes
Contents
module SchemaPlus::DefaultExpr module ActiveRecord module ConnectionAdapters module PostgresqlAdapter def default_expr_valid?(expr) true # arbitrary sql is okay in PostgreSQL end def sql_for_function(function) case function when :now "NOW()" end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems