aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* mostly decouple TableDefinition from the database connectionAaron Patterson2013-03-222-4/+4
* remove to_sql from TableDefinitionAaron Patterson2013-03-222-9/+1
* decouple column definition from the database connectionAaron Patterson2013-03-221-6/+6
* remove knowledge of SQL from the column definition objectAaron Patterson2013-03-221-21/+2
* use `connect_poll` on pg so that reaping does not hurt the connectionAaron Patterson2013-03-201-1/+3
* Revert "default the reaping frequency to 10 seconds"Aaron Patterson2013-03-201-1/+1
* fix typos in AR. lots of them.Vipul A M2013-03-192-2/+2
* Refactored to reuse methodAnupam Choudhury2013-03-151-2/+2
* ask column if it is a pkAaron Patterson2013-03-141-1/+5
* clean up pk delclaration in `create_table`Aaron Patterson2013-03-141-1/+8
* you can provide uuid_generate_v4 as the default value for uuid columnsAaron Patterson2013-03-141-1/+2
* pg is the only adapter that supports the xml type, so push the method downAaron Patterson2013-03-141-9/+0
* Apparently people were mutating this array. :'(Aaron Patterson2013-03-141-3/+3
* hashes are ordered, so just use the columns_hash ivarAaron Patterson2013-03-141-3/+3
* use the method so we do not depend on internal ivarsAaron Patterson2013-03-141-1/+1
* extract factory method and push common code up to abstract adapterAaron Patterson2013-03-141-2/+5
* Fix typo [ci skip]Carlos Antonio da Silva2013-03-111-1/+1
* promotes change_column_null to the migrations APIXavier Noria2013-03-111-0/+20
* quick pass over the RDoc of schema_statements.rb [ci skip]Xavier Noria2013-03-111-122/+190
* documents how to DROP DEFAULT [ci skip]Xavier Noria2013-03-111-3/+7
* default the reaping frequency to 10 secondsAaron Patterson2013-03-111-1/+1
* Make sure options is a hashRafael Mendonça França2013-03-081-1/+3
* If an index can't be found by column, use the index name.Ezekiel Smithburg2013-03-071-0/+6
* SQLite3 3.6.8+ supports savepointsNeeraj Singh2013-03-071-1/+2
* `Connection#structure_dump` is no longer used. #9518Yves Senn2013-03-061-5/+0
* Support PostgreSQL specific column types when using `change_table`.Yves Senn2013-02-281-4/+8
* update docs, change_table does not use TableDefinition.Yves Senn2013-02-281-3/+3
* Revert "Merge pull request #9207 from dylanahsmith/mysql-quote-numeric"Steve Klabnik2013-02-271-8/+2
* Fix default output for postgres network address typesErik Peterson2013-02-261-0/+11
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-02-261-1/+1
|\
| * Typo fixCarson McDonald2013-02-251-1/+1
* | Indent comment block by two spaces.Marc Schütz2013-02-211-4/+4
* | Add more documentation for create_join_table.Marc Schütz2013-02-201-0/+8
* | also rename indexes when a table or column is renamedYves Senn2013-02-201-0/+22
* | reserve index name chars for internal rails operationsYves Senn2013-02-202-3/+14
* | Reduced memory leak problem in transactions by lazily updating AR objects wit...wangjohn2013-02-201-3/+10
* | Gist URLs are now namespacedAkira Matsuda2013-02-181-4/+4
|/
* Revert "Revert "Merge pull request #9206 from ranjaykrishna/use_define_method""Jon Leighton2013-02-151-18/+13
* Revert "Merge pull request #9206 from ranjaykrishna/use_define_method"Jon Leighton2013-02-151-13/+18
* Merge pull request #9206 from ranjaykrishna/use_define_methodCarlos Antonio da Silva2013-02-121-18/+13
|\
| * reverted back our changes and added in the new define_methodRanjay Krishna2013-02-121-18/+13
* | active_record: Quote numeric values compared to string columns.Dylan Smith2013-02-071-2/+8
* | updates a dynamic method heredoc docXavier Noria2013-01-281-2/+2
* | explains why the query cache checks arel.lockedXavier Noria2013-01-281-0/+2
* | Fix typo: adaptors => adapters [ci skip]Carlos Antonio da Silva2013-01-271-1/+1
* | Fix cases where delete_records on a has_many association caused errorsDerek Kraan2013-01-271-0/+12
* | Default dead_connection_timeout to 5Akira Matsuda2013-01-241-1/+1
* | Add postgresql range types supportbUg2013-01-231-0/+3
* | Refactored transaction state into its own object. Each transaction creates a ...wangjohn2013-01-211-5/+24
|/
* Created state for a transaction and added tests.wangjohn2013-01-201-0/+12