aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* refactor, introduce `Type#type_cast_for_schema` to cast for schema.rbYves Senn2014-05-304-26/+17
* pg, support default values for enum types. Closes #7814.Yves Senn2014-05-302-2/+9
* pg, `default_sequence_name` respects schema. Closes #7516.Yves Senn2014-05-301-2/+2
* Merge pull request #11896 from nkondratyev/fix_pg_columns_for_distinctYves Senn2014-05-301-1/+1
|\
| * Fixed `columns_for_distinct` of postgresql adapterNikolay Kondratyev2013-08-151-1/+1
* | pg, `reset_pk_sequence!` respects schemas. Closes #14719.Yves Senn2014-05-301-5/+13
* | pg, `PostgreSQL::Name` to hold schema qualified names.Yves Senn2014-05-303-17/+53
* | Move `type_cast_for_write` behavior over to the serialized type objectSean Griffin2014-05-291-1/+1
* | Refactor serialized types to be partially defined as custom propertiesSean Griffin2014-05-292-6/+4
* | Ensure we always use instances of the adapter specific column classSean Griffin2014-05-284-5/+14
* | Keep closer to other methods that touch @transactionArthur Neves2014-05-282-4/+4
* | Merge pull request #15370 from sgrif/sg-type-namespaceRafael Mendonça França2014-05-2819-498/+2
|\ \
| * | Move types to the top level `ActiveRecord` namespaceSean Griffin2014-05-2719-498/+2
* | | Merge pull request #15387 from sgrif/sg-remove-column-coderSantiago Pastorino2014-05-281-14/+1
|\ \ \
| * | | Remove unused `Column#coder`Sean Griffin2014-05-281-14/+1
| |/ /
* / / pg, keep `hstore` and `json` attributes as `Hash` in @attributes.Yves Senn2014-05-282-2/+14
|/ /
* | Remove AR Properties from the public APISean Griffin2014-05-2710-10/+10
* | Merge pull request #15295 from sgrif/sg-deprecate-decimalsRafael Mendonça França2014-05-272-0/+3
|\ \
| * | Deprecate decimal columns being automatically treated as integersSean Griffin2014-05-272-0/+3
* | | Merge pull request #15359 from kuldeepaggarwal/f-remove-unwanted_to_symYves Senn2014-05-271-1/+1
|\ \ \
| * | | remove unwanted `to_sym` call.Kuldeep Aggarwal2014-05-261-1/+1
* | | | Merge pull request #15353 from sgrif/sg-mysql-conditionRafael Mendonça França2014-05-261-2/+0
|\ \ \ \ | |_|/ / |/| | |
| * | | Remove unnecessary branch from quoting in MysqlSean Griffin2014-05-261-2/+0
* | | | Add a public API to allow users to specify column typesSean Griffin2014-05-2611-12/+21
|/ / /
* | | Extract types which don't require additional typecasting to a methodSean Griffin2014-05-261-4/+9
* | | Refactor the type casting of booleans in MySQLSean Griffin2014-05-262-13/+18
* | | Remove checks against `column.type` in abstract adapter quotingSean Griffin2014-05-263-34/+21
* | | Merge pull request #15307 from sgrif/sg-type-cast-for-writeYves Senn2014-05-263-1/+15
|\ \ \
| * | | Add an interface for type objects to control Ruby => SQLSean Griffin2014-05-263-1/+15
* | | | pg, add missing `:nodoc:` to adapter.Yves Senn2014-05-261-8/+8
* | | | pg, remove unused code. Use `extract_schema_and_table` instead.Yves Senn2014-05-261-10/+0
| |/ / |/| |
* | | pg, remove duplicated code.Yves Senn2014-05-241-4/+0
* | | pg, extract schema definitions into separate file.Yves Senn2014-05-242-135/+141
|/ /
* | Remove special case in schema dumper for decimal without scaleSean Griffin2014-05-235-35/+32
* | Merge pull request #15277 from sgrif/sg-schema-cache-refactorRafael Mendonça França2014-05-231-31/+11
|\ \
| * | Simplify the code in schema cacheSean Griffin2014-05-231-31/+11
* | | Merge pull request #15282 from sgrif/sg-remove-column-primaryRafael Mendonça França2014-05-231-2/+1
|\ \ \
| * | | Remove `Column#primary`Sean Griffin2014-05-231-2/+1
| |/ /
* | | Merge pull request #15280 from sgrif/sg-postgres-defaultsRafael Mendonça França2014-05-233-76/+78
|\ \ \
| * | | Move parsing of PG sql strings for defaults out of columnSean Griffin2014-05-233-76/+78
| |/ /
* / / Inline type cast method for PG pointsSean Griffin2014-05-232-8/+4
|/ /
* | Push limit to type objectsSean Griffin2014-05-226-70/+64
* | Push precision to type objectsSean Griffin2014-05-226-22/+27
* | Push scale to type objectsSean Griffin2014-05-227-20/+27
* | Move `extract_precision` onto type objectsDan Croak and Sean Griffin2014-05-227-19/+15
* | Merge pull request #15249 from sgrif/sg-register-types-in-adapterRafael Mendonça França2014-05-223-75/+62
|\ \
| * | Use the generic type map for all PG type registrationsSean Griffin2014-05-223-75/+62
* | | Allow additional arguments to be used during type map lookupsSean Griffin2014-05-224-12/+12
|/ /
* | Merge pull request #15237 from sgrif/sg-move-extract-scaleRafael Mendonça França2014-05-213-6/+5
|\ \
| * | Move extract_scale to decimal typeSean Griffin2014-05-213-6/+5