Module: ActiveRecord::ConnectionAdapters::MysqlCommon
- Included in:
- Mysql2Adapter, MysqlAdapter
- Defined in:
- lib/active_record/connection_adapters_ext.rb
Instance Method Summary collapse
Instance Method Details
#custom_cast_types ⇒ Object
29 30 31 32 33 34 35 |
# File 'lib/active_record/connection_adapters_ext.rb', line 29 def custom_cast_types { string: { name: "char" }, integer: { name: "signed" }, text: { name: "char" }, float: { name: "decimal" }, binary: { name: "binary" } } end |
#match(string) ⇒ Object
25 26 27 |
# File 'lib/active_record/connection_adapters_ext.rb', line 25 def match string "REGEXP #{string}" end |