aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/column.rb
Commit message (Expand)AuthorAgeFilesLines
* warning: instance variable @serial not initialized (#36556)utilum2019-06-281-0/+10
* Deduplicate various Active Record schema cache structuresJean Boussier2019-06-031-0/+13
* Refactor around sql_type metadata and columnRyuta Kamizono2019-04-121-2/+10
* Except `table_name` from column objectsRyuta Kamizono2019-04-081-33/+12
* Use private attr_readerRyuta Kamizono2018-02-231-2/+1
* Fix longer sequence name detection for serial columns (#28339)Ryuta Kamizono2017-10-151-0/+20
* Fix collided sequence name detectionRyuta Kamizono2017-09-181-1/+8
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Initialize `column.table_name` immediately for `column.serial?` correctly wor...Ryuta Kamizono2016-03-081-1/+0
* Fix `serial?` with quoted sequence nameRyuta Kamizono2015-05-181-1/+2
* Correctly dump `serial` and `bigserial`Ryuta Kamizono2015-03-041-1/+3
* rm `Column#cast_type`Sean Griffin2015-02-031-13/+1
* Remove most uses of `Column#cast_type`Sean Griffin2015-01-301-3/+5
* Prefer `array?` rather than `array`Ryuta Kamizono2015-01-041-5/+4
* Improve a dump of the primary key support.Ryuta Kamizono2014-12-291-0/+4
* Use the type object for quoting PG RangesSean Griffin2014-07-051-4/+0
* Inline PG array type casting helperSean Griffin2014-06-101-18/+2
* Refactor serialized types to be partially defined as custom propertiesSean Griffin2014-05-291-4/+0
* Move parsing of PG sql strings for defaults out of columnSean Griffin2014-05-231-75/+4
* Push limit to type objectsSean Griffin2014-05-221-9/+0
* Move `extract_precision` onto type objectsDan Croak and Sean Griffin2014-05-221-13/+0
* Rename `oid_type` to `cast_type` to make PG columns consistentSean Griffin2014-05-211-5/+4
* push `extract_scale` to the `Type`.Yves Senn2014-05-211-6/+0
* Delegate `type_cast_for_write` to injected type objectSean Griffin2014-05-201-11/+0
* Delegate predicate methods to injected type object on ColumnSean Griffin2014-05-201-8/+0
* Replace `type_cast` case statement with delegationSean Griffin2014-05-201-7/+0
* Delegate `Column#type` to the injected type objectSean Griffin2014-05-191-5/+0
* Add a type object to Column constructorSean Griffin2014-05-171-2/+2
* :scissors:Rafael Mendonça França2014-05-141-1/+0
* introduce AR::ConnectionAdapters::PostgreSQL for sharing modules (with AR-JDBC)kares2014-05-141-2/+5
* [postgres] include PgArrayParser directly and only load/include ArrayParser i...kares2014-05-131-2/+14
* copy edits [ci skip]Vijay Dev2014-05-081-1/+1
* [ci skip] document type_cast_for_writeschneems2014-05-071-0/+3
* PostgreSQL determine `Column#type` through corresponding OID. #7814Yves Senn2014-04-011-64/+1
* refactor, put `PostgreSQLColumn` into `column.rb`.Yves Senn2014-03-311-0/+221