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)


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

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

#sql_for_function(function) ⇒ Object



437
438
439
440
441
442
# File 'lib/schema_plus/active_record/connection_adapters/postgresql_adapter.rb', line 437

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