aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #19978 from kamipo/collation_option_support_for_postgresqlRafael Mendonça França2015-05-033-2/+12
|\
| * Move the collation handling code from the MySQL adapter to common classesRyuta Kamizono2015-05-043-2/+12
* | Merge pull request #19989 from kamipo/change_visit_addcolumn_visibiltyRafael Mendonça França2015-05-032-6/+9
|\ \
| * | Change the `visit_AddColumn` visiblity for the internal APIRyuta Kamizono2015-05-032-6/+9
* | | Missing `:bigint` [ci skip]Ryuta Kamizono2015-05-041-1/+1
| |/ |/|
* | Move comment about microseconds [ci skip]Ryuta Kamizono2015-05-031-0/+2
|/
* Merge pull request #19962 from prathamesh-sonpatki/nodoc-validate-index-lengthYves Senn2015-04-301-1/+1
|\
| * Nodoc validate_index_length! methodPrathamesh Sonpatki2015-04-301-1/+1
* | Added documentation for PostGreSQL database_statements [ci skip]Prathamesh Sonpatki2015-04-301-2/+2
|/
* use a more descriptive example. [ci skip]Yves Senn2015-04-241-6/+4
* docs for `create_table` and non-int primary keys. [ci skip]Yves Senn2015-04-241-0/+17
* Fix missing index when using timestamps with indexPaul Mucur2015-04-151-0/+1
* Document that partial indexes are only supported by Postgres and SQLite.Grey Baker2015-04-131-0/+2
* Add a note regarding add_column restricted API [ci skip]Zachary Scott2015-04-121-0/+4
* fix documentation for SchemaStatements#add_foreign_keySimon Stemplinger2015-04-081-2/+2
* Merge pull request #19448 from tgxworld/fix_activesupport_callbacks_clash_on_runRafael Mendonça França2015-04-061-2/+2
|\
| * Revert "Reduce allocations when running AR callbacks."Guo Xiang Tan2015-03-221-2/+2
* | No need to document drop_table in the PostgreSQLAdapterRafael Mendonça França2015-04-061-0/+3
* | use singular table name if pluralize_table_names is setted as false while cre...Mehmet Emin İNAÇ2015-04-062-2/+5
* | Freeze static arguments for gsubbrainopia2015-04-021-1/+1
* | Prefer string patterns for gsubbrainopia2015-04-021-1/+1
* | [ci skip] Remove unacceptable method nameyui-knk2015-03-241-1/+1
|/
* Updated MySQL documentation link to MySQL latest version 5.6 everywhere [ci s...amitkumarsuroliya2015-03-191-2/+2
* Fix before_commit when updating a record on the callbackArthur Neves2015-03-141-23/+22
* Correctly dump `serial` and `bigserial`Ryuta Kamizono2015-03-041-1/+5
* Merge pull request #19171 from JuanitoFatas/doc/more-examplesSean Griffin2015-03-021-0/+16
|\
| * Add more documents for AR connection_adapters abstract schema_definitions. [c...Juanito Fatas2015-03-031-0/+16
* | Revert "delete unused method"Carlos Antonio da Silva2015-03-021-0/+4
* | Revert "mutate the transaction object to reflect state"Aaron Patterson2015-03-021-29/+25
* | delete unused methodAaron Patterson2015-03-021-4/+0
* | mutate the transaction object to reflect stateAaron Patterson2015-03-021-25/+21
* | ask the txn for it's state, not a state objectAaron Patterson2015-03-021-0/+8
* | change if! to unlessAaron Patterson2015-03-021-1/+1
* | Clarify that t.references and t.belongs_to are interchangeable. [ci skip]Juanito Fatas2015-03-021-1/+1
|/
* Remove parent transaction stateArthur Neves2015-03-011-3/+0
* Merge pull request #18936 from arthurnn/txn_callbacksArthur Nogueira Neves2015-02-241-1/+7
|\
| * Add before_commitArthur Neves2015-02-241-1/+7
* | Tiny documentation edits [ci skip]Robin Dupret2015-02-241-1/+1
* | Extract the short-hand methods into `ColumnMethods`Ryuta Kamizono2015-02-231-23/+28
* | Extract `primary_key` method into `ColumnMethods`Ryuta Kamizono2015-02-221-6/+13
* | Allow `:precision` option for time type columnsRyuta Kamizono2015-02-201-0/+6
* | Use `delegate` to call the methods to `@conn`Ryuta Kamizono2015-02-191-16/+3
* | `type_cast_for_database` -> `serialize`Sean Griffin2015-02-171-2/+2
* | `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-171-1/+1
* | Revert "Allow `:precision` option for time type columns"Sean Griffin2015-02-171-6/+0
* | Merge pull request #18662 from estum/foreign-key-existsYves Senn2015-02-162-15/+38
|\ \
| * | Add methods to get foreign key matching argumentsAnton2015-01-292-40/+36
| * | Add `foreign_key_exists?` method.Anton2015-01-242-0/+27
* | | fix, `to_table` in `remove_foreign_key` should be plural.Yves Senn2015-02-161-1/+1
* | | Register adapter specific types with the global type registrySean Griffin2015-02-151-21/+0
| |/ |/|