aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* [ci skip] /sqlite/i --> SQLiteAkshay Vishnoi2014-07-061-1/+1
* Always pass a column with a type object to quoteSean Griffin2014-06-283-13/+8
* Add nodoc to internal class [ci skip]Rafael Mendonça França2014-06-261-1/+1
* fk: add docsYves Senn2014-06-261-0/+58
* fk: review corrections: indent, visibility, syntax, wording.Yves Senn2014-06-262-26/+27
* fk: use random digest namesYves Senn2014-06-263-10/+23
* fk: raise for invalid :on_update / :on_delete valuesYves Senn2014-06-261-3/+8
* fk: `add/remove_foreign_key` are noop for adapters that don't support fkYves Senn2014-06-261-0/+4
* fk: raise when identifiers are longer than `allowed_index_name_length`.Yves Senn2014-06-261-1/+5
* fk: support for on_updateYves Senn2014-06-263-3/+9
* fk: rename `dependent` to `on_delete`Yves Senn2014-06-263-9/+8
* fk: infere column name from table names.Yves Senn2014-06-261-4/+14
* fk: support dependent option (:delete, :nullify and :restrict).Yves Senn2014-06-263-2/+18
* fk: `:primary_key` option for non-standard pk's.Yves Senn2014-06-261-1/+3
* fk: generalize using `AlterTable` and `SchemaCreation`.Yves Senn2014-06-263-7/+56
* fk: `foreign_keys`, `add_foreign_key` and `remove_foreign_key` for MySQLYves Senn2014-06-262-0/+21
* Remove unused param 'conn' from ConnectionPool#releaseMindaugas Mozūras2014-06-231-3/+3
* Don't use column object for type casting in `quoting`Sean Griffin2014-06-181-4/+4
* Don't type cast the default on the columnSean Griffin2014-06-171-1/+11
* /mysql/i -> MySQL, Spell correct in continuation to #15555Akshay Vishnoi2014-06-142-4/+4
* Remove unused requireSean Griffin2014-06-111-2/+0
* Change wording of explanation about precision & scale of decimal numbers [ci ...Prathamesh Sonpatki2014-06-041-2/+2
* Refactor quoting of binary data to not be based on the column typeSean Griffin2014-06-031-29/+38
* refactor, introduce `Type#type_cast_for_schema` to cast for schema.rbYves Senn2014-05-301-26/+1
* Keep closer to other methods that touch @transactionArthur Neves2014-05-281-0/+4
* 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-261-2/+10
* Remove checks against `column.type` in abstract adapter quotingSean Griffin2014-05-261-34/+17
* Add an interface for type objects to control Ruby => SQLSean Griffin2014-05-261-0/+9
* Remove special case in schema dumper for decimal without scaleSean Griffin2014-05-231-9/+2
* Remove :timestamp column typeSean Griffin2014-05-191-0/+7
* Make `:index` in migrations work with all column typesMarc Schütz2014-05-181-6/+13
* Remove dead test code for unsupported adaptersSean Griffin2014-05-171-9/+0
* Convert column name to string only onceKuldeep Aggarwal2014-05-041-1/+2
* cache scope building on associationsAaron Patterson2014-04-141-1/+5
* Merge branch 'master' into adequaterecordAaron Patterson2014-04-141-1/+1
|\
| * please use Ruby, not ActiveSupportAaron Patterson2014-04-111-1/+1
* | working against arel/collector branchAaron Patterson2014-04-091-1/+2
* | fix bind collecting for mysqlAaron Patterson2014-04-091-1/+0
* | add a bind collector, remove the bind visitorAaron Patterson2014-04-091-3/+1
* | use the compile method so we do not have to specify the collectors in this caseAaron Patterson2014-04-091-2/+1
* | working against arel/collector branchAaron Patterson2014-04-091-1/+2
* | Merge branch 'master' into adequaterecordAaron Patterson2014-04-074-49/+54
|\|
| * fix bug on non empty defaults for pg array columnsLuke Steensen2014-03-302-2/+8
| * No need to call to_symRafael Mendonça França2014-03-301-2/+2
| * Replace trivial regexp with string or index, twice as fastKelley Reynolds2014-03-281-1/+1
| * Don't use send when we own the methodRafael Mendonça França2014-03-261-34/+34
| * Invert the conditionals to make easier to readRafael Mendonça França2014-03-261-4/+4
| * Fixes bugs for using indexes in CREATE TABLE by adding checks for table exist...Steve Rice2014-03-251-1/+1
| * create indexes inline in CREATE TABLE for MySQLCody Cutrer2014-03-251-11/+10