aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* add table.bigint supportAaron Patterson2014-10-151-1/+1
* Reduce allocations when running AR callbacks.Pete Higgins2014-09-281-2/+2
* ar/connection_pool: honor overriden rack.test in middlewareSimon Eskildsen2014-09-231-1/+1
* add a truncate method to the connectionAaron Patterson2014-09-221-0/+5
* Merge pull request #13656 from chanks/rollback_transactions_in_killed_threadsMatthew Draper2014-09-141-5/+11
|\
| * Roll back open transactions when the running thread is killed.Chris Hanks2014-08-221-1/+5
* | Include default column limits in schema.rbJeremy Kemper2014-09-101-4/+8
* | Merge pull request #16781 from kamipo/move_column_option_handlingYves Senn2014-09-031-1/+0
|\ \
| * | Move column option handling to new_column_definitionRyuta Kamizono2014-09-031-1/+0
* | | Add and Remove string/strip requireArthur Neves2014-09-022-1/+2
|/ /
* / Avoid using heredoc for user warningsGodfrey Chan2014-08-281-6/+5
|/
* Add missing AS requireArthur Neves2014-08-191-0/+1
* Merge pull request #16542 from seamusabshere/numerify-pool-checkout-timeout-f...Rafael Mendonça França2014-08-181-1/+1
* Add option to stop swallowing errors on callbacks.Arthur Neves2014-08-181-7/+23
* Merge pull request #16481 from sgrif/sg-change-default-timestampsDavid Heinemeier Hansson2014-08-172-6/+24
|\
| * Change the default `null` value for timestampsSean Griffin2014-08-122-6/+24
* | Fix regression on after_commit in nested transactions.Arthur Neves2014-08-151-0/+2
* | Use *_transaction methods in TransactionManagerArthur Neves2014-08-151-4/+2
* | `index_exists?` with `:name` checks specified columns.Yves Senn2014-08-131-7/+8
|/
* Cleanup Transaction inheritance.Arthur Neves2014-08-051-70/+54
* Replace ClosedTransaction with NullTransactionArthur Neves2014-07-311-7/+4
* Move TransactionManager to bottom of classArthur Neves2014-07-311-67/+67
* Merge pull request #16341 from arthurnn/transactions_remove_beginRafael Mendonça França2014-07-311-54/+18
|\
| * Make ClosedTransaction a null objectArthur Neves2014-07-311-16/+6
| * Remove parent on Transaction objectArthur Neves2014-07-311-16/+9
| * Remove being/number methods from transaction classArthur Neves2014-07-311-27/+8
* | Clarify how the ConnectionHandler worksJack Danger Canty2014-07-311-15/+36
|/
* Remove @state.parent assignment on commitArthur Neves2014-07-291-2/+1
* Extract the transaction class to a local variableRafael Mendonça França2014-07-281-6/+2
* savepoint_name should return nil for non-savepoint transactionsArthur Neves2014-07-281-1/+6
* Transactions refactoringArthur Neves2014-07-282-38/+64
* Remove finishing? method from transaction.Arthur Neves2014-07-241-23/+10
* Merge pull request #16231 from Envek/type_in_referencesYves Senn2014-07-222-4/+25
|\
| * Allow to specify a type for foreign key column in migrationsAndrey Novikov2014-07-222-2/+10
|/
* Change back occurrences of SQLite(3) to sqlite3 when referring to theZachary Scott2014-07-061-1/+1
* [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