aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/column.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Add an interface for type objects to control Ruby => SQLSean Griffin2014-05-261-1/+2
* Remove `Column#primary`Sean Griffin2014-05-231-2/+1
* Push limit to type objectsSean Griffin2014-05-221-8/+2
* Push precision to type objectsSean Griffin2014-05-221-5/+2
* Push scale to type objectsSean Griffin2014-05-221-4/+3
* Move `extract_precision` onto type objectsDan Croak and Sean Griffin2014-05-221-5/+1
* push `extract_scale` to the `Type`.Yves Senn2014-05-211-1/+1
* Delegate `klass` to the injected type objectSean Griffin2014-05-201-14/+1
* Delegate `type_cast_for_write` to injected type objectSean Griffin2014-05-201-19/+1
* Merge pull request #15207 from sgrif/sg-inline-column-helpersRafael Mendonça França2014-05-201-112/+0
|\
| * Inline typecasting helpers from Column to the appropriate typesSean Griffin2014-05-201-112/+0
* | Delegate predicate methods to injected type object on ColumnSean Griffin2014-05-201-15/+1
|/
* Replace `type_cast` case statement with delegationSean Griffin2014-05-201-22/+4
* Delegate type_cast to injected type object in mysqlSean Griffin2014-05-201-15/+2
* Remove :timestamp column typeSean Griffin2014-05-191-2/+2
* Delegate `Column#type` to the injected type objectSean Griffin2014-05-191-36/+5
* Add a type object to Column constructorSean Griffin2014-05-171-1/+3
* [ci skip] document type_cast_for_writeschneems2014-05-071-0/+2
* Coerce strings when reading attributes.Yves Senn2014-02-231-2/+8
* Push default_function to superclass to avoid method checkRafael Mendonça França2013-10-141-11/+12
* ActiveRecord::ConnectionAdapters::Column.string_to_time method respects strin...kennyj2013-09-251-3/+11
* Stop interpreting SQL 'string' columns as :string type.Ben Woosley2013-08-171-1/+1
* Remove redundant `string_to_binary` from type-castingVipul A M2013-08-091-10/+0
* Removed deprecated method type_cast_code from ColumnNeeraj Singh2013-07-021-24/+0
* Per #9999 revert the revert changing so columns are only tested for empty? as...Sam2013-04-031-4/+4
* Revert "Merge pull request #9784 from vipulnsward/change_from_blank_to_empty_...Carlos Antonio da Silva2013-03-181-4/+4
* change from blank? to empty? on obvious string values to save extra method c...Vipul A M2013-03-191-4/+4
* 9253: Before writing a numeric attribute value, ActiveRecord does an implicitRyan Warnick2013-02-131-4/+5
* Add postgresql range types supportbUg2013-01-231-1/+0
* Fix error when assigning NaN to an integer columnTristan Harward2013-01-061-5/+1
* Fix undefined method `to_i' introduced since 3.2.8Jason Stirk2013-01-041-1/+5
* AR supporting new intrange data type on PostgreSQL >= 9.2Alexey2012-12-161-0/+1
* Deprecate obsolete Time to DateTime fallback methodsAndrew White2012-12-111-1/+1
* Make caller attribute in deprecation methods optionalAlexey Gaziev2012-10-301-1/+1
* Fix bug when Column is trying to type cast boolean values to integer.Rafael Mendonça França2012-10-291-2/+13
* Provide a call stack for deprecation warnings where needed.Nikita Afanasenko2012-10-291-2/+3
* The default value of a text/blob in mysql strict mode should be nilJon Leighton2012-10-191-4/+0
* Support for partial inserts.Jon Leighton2012-09-281-0/+4
* update ConnectionAdaptar::Column#type_cast_code to be compatible with 3.2 branchThiago Pradi2012-09-131-1/+1
* ActiveRecord support to PostgreSQL 9.2 JSON typeDickson S. Guedes2012-09-051-0/+1
* Fix for time type columns with invalid timeAdam Meehan2012-09-051-1/+7
* Fix occasional microsecond conversion inaccuracyAri Pollak2012-08-151-2/+2
* load active_support/deprecation in active_support/railsXavier Noria2012-08-021-1/+0
* Merge pull request #6192 from danmcclain/add_inet_and_cidr_types_to_postgresq...Aaron Patterson2012-05-161-0/+1
|\
| * Converts inet and cidr columns to NetAddr::CIDRDan Seaver2012-05-071-0/+1
* | Prevent creating valid time-like objects from blank string from dbEgor Lynko2012-05-051-3/+3
|/
* Don't type cast values that don't respond to to_i to 1James Sanders & Jason Noble2012-04-301-1/+1
* Deprecate Column#type_cast_codeCarlos Antonio da Silva2012-03-291-0/+4
* PG column consults oid types when typecastingAaron Patterson2012-02-101-1/+4
* string_to_hstore / hstore_to_string, serializingJoel2012-02-081-2/+2