aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
Commit message (Expand)AuthorAgeFilesLines
* No need to document drop_table in the PostgreSQLAdapterRafael Mendonça França2015-04-061-9/+1
* change the explanation of :if_exists option [ci skip]Mehmet Emin İNAÇ2015-04-061-1/+1
* drop_table method documentation for mysql and postgresql adapters [ci skip]Mehmet Emin İNAÇ2015-04-061-0/+8
* Make method as nodoc since we are already docummenting at AbstractAdapterRafael Mendonça França2015-03-311-1/+1
* Reduce memory usage when loading types in PGSean Griffin2015-03-291-4/+16
* PostgreSQL, Use ruby-pg's built-in capabilities for array en-/decoding in C.Lars Kanis2015-03-252-143/+6
* PostgreSQL, Fix OID based type casts in C for primitive types.Lars Kanis2015-03-252-4/+4
* Delegate limit to subtypewallerjake2015-03-211-1/+1
* Don't cast nil to string in pg enumsSean Griffin2015-03-191-1/+3
* pg, `disable_referential_integrity` only catches AR errors.Yves Senn2015-03-111-2/+2
* fix typo in transaction argument. Closes #19265.Yves Senn2015-03-111-1/+1
* Correctly dump `serial` and `bigserial`Ryuta Kamizono2015-03-041-1/+3
* [ci skip] Fix a typo for PostgreSQL text limit, GB instead of Gb.Juanito Fatas2015-03-031-2/+2
* rework `disable_referential_integrity` for PostgreSQL.Yves Senn2015-02-241-9/+28
* The short-hand methods should be able to define multiple columnsRyuta Kamizono2015-02-231-44/+50
* Extract `primary_key` method into `ColumnMethods`Ryuta Kamizono2015-02-221-33/+33
* Allow `:precision` option for time type columnsRyuta Kamizono2015-02-201-6/+0
* Handle array option in `type_to_sql`Ryuta Kamizono2015-02-191-19/+16
* Should handle array option for `:cast_as`Ryuta Kamizono2015-02-191-4/+8
* Rm `Type#type_cast`Sean Griffin2015-02-176-8/+8
* `type_cast_from_user` -> `cast`Sean Griffin2015-02-171-2/+2
* `type_cast_for_database` -> `serialize`Sean Griffin2015-02-1710-12/+12
* `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-177-8/+8
* Revert "Allow `:precision` option for time type columns"Sean Griffin2015-02-171-0/+7
* Register adapter specific types with the global type registrySean Griffin2015-02-151-38/+0
* Allow `:precision` option for time type columnsRyuta Kamizono2015-02-121-7/+0
* Merge pull request #18888 from kamipo/refactor_quote_default_expressionRafael Mendonça França2015-02-112-12/+6
|\
| * Refactor `quote_default_expression`Ryuta Kamizono2015-02-112-12/+6
* | Remove an unused option that I didn't mean to commit [ci skip]Sean Griffin2015-02-111-2/+1
* | Remove most PG specific type subclassesSean Griffin2015-02-1111-83/+14
|/
* Refactor microsecond precision to be database agnosticSean Griffin2015-02-101-9/+0
* Merge pull request #18849 from kamipo/array_type_is_a_part_of_sql_typeSean Griffin2015-02-091-18/+3
|\
| * An array type is a part of `sql_type`Ryuta Kamizono2015-02-081-18/+3
* | Fix rounding problem for PostgreSQL timestamp columnRyuta Kamizono2015-02-081-0/+9
|/
* rm `Type#text?`Sean Griffin2015-02-071-4/+0
* Move non-type objects into the `Type::Helpers` namespaceSean Griffin2015-02-074-4/+4
* Allow a symbol to be passed to `attribute`, in place of a type objectSean Griffin2015-02-063-1/+54
* Add default options to 'bit' and 'bit_varying' methodsMelody2015-02-031-2/+2
* Adds default options hash for postgres money typeMelody Berton2015-02-031-1/+1
* rm `Column#cast_type`Sean Griffin2015-02-033-18/+53
* Remove most uses of `Column#cast_type`Sean Griffin2015-01-303-9/+17
* Don't error when invalid json is assigned to a JSON columnSean Griffin2015-01-211-1/+1
* Add an `:if_exists` option to `drop_table`Stefan Kanev2015-01-191-1/+1
* Time columns should support time zone aware attributesSean Griffin2015-01-151-1/+1
* remove deprecated support for PG ranges with exclusive lower bounds.Yves Senn2015-01-051-10/+1
* Merge pull request #18318 from kamipo/stop_passing_the_column_when_quoting_de...Rafael Mendonça França2015-01-041-1/+2
|\
| * Stop passing the column to the `quote` method when quoting defaultsRyuta Kamizono2015-01-041-1/+2
* | Prefer `array?` rather than `array`Ryuta Kamizono2015-01-041-5/+4
|/
* Merge pull request #17820 from fw42/restore_query_cache_on_rollbackRafael Mendonça França2015-01-021-1/+1
|\
| * Restore query cache on rollbackFlorian Weingarten2014-12-011-1/+1