Module: SchemaPlus::ActiveRecord::ConnectionAdapters::PostgresqlAdapter::AddColumnOptions

Defined in:
lib/schema_plus/active_record/connection_adapters/postgresql_adapter.rb

Instance Method Summary collapse

Instance Method Details

#default_expr_valid?(expr) ⇒ Boolean

Returns:

  • (Boolean)


323
324
325
# File 'lib/schema_plus/active_record/connection_adapters/postgresql_adapter.rb', line 323

def default_expr_valid?(expr)
  true # arbitrary sql is okay in PostgreSQL
end

#sql_for_function(function) ⇒ Object



327
328
329
330
331
332
# File 'lib/schema_plus/active_record/connection_adapters/postgresql_adapter.rb', line 327

def sql_for_function(function)
  case function
    when :now
      "NOW()"
  end
end