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)


426
427
428
# File 'lib/schema_plus/active_record/connection_adapters/postgresql_adapter.rb', line 426

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

#sql_for_function(function) ⇒ Object



430
431
432
433
434
435
# File 'lib/schema_plus/active_record/connection_adapters/postgresql_adapter.rb', line 430

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