aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Ensure MysqlAdapter allows SSL connection when only sslca is supplied. [#253 ...Micah Wedemeyer2008-07-111-2/+5
* Boolean type casting creates fewer objectsJeremy Kemper2008-07-091-1/+1
* MySQL: treat integer with :limit => 11 as a display width, not byte size, for...Jeremy Kemper2008-06-273-11/+15
* Performance: minor Column#text? and #number? speedupsJeremy Kemper2008-06-251-2/+2
* Treat any limit > 4 as bigintJeremy Kemper2008-06-231-6/+8
* Always treat integer :limit as byte length. [#420 state:resolved]Tarmo Tänav2008-06-222-16/+21
* Oops, already had a postgresql_version method!Jeremy Kemper2008-06-221-6/+1
* Only use DROP ... IF EXISTS for PostgreSQL 8.2 or later. [#400 state:resolved]ian2008-06-221-1/+9
* MySQL: rename_column preserves default values. [#466 state:resolved]Diego Algorta2008-06-221-1/+9
* supports_insert_with_returning? caches false result alsoJeremy Kemper2008-06-111-3/+6
* PostgreSQL: use 'INSERT ... RETURNING id' for 8.2 and later.Jeremy Kemper2008-06-101-3/+20
* PostgreSQL: insert looks up pk and sequence name if not given. [#384 state:r...Jeremy Kemper2008-06-101-2/+17
* Enable autoreconnect if available. Freeze constants.Jeremy Kemper2008-06-081-2/+7
* Give a more informative error message instead of just raising a load error wh...Jeremy Kemper2008-06-081-1/+8
* Don't append limit to primary key column definition. Freeze some constants.Jeremy Kemper2008-06-083-32/+40
* Remove vendor/mysql.rb. Deprecated in 2.1 stable, gone in 2.2.Jeremy Kemper2008-06-081-25/+4
* PostgreSQL: quote bare table namesJeremy Kemper2008-06-071-3/+3
* Give a nice message if there are duplicate migrations instead of raising a st...Jeremy Kemper2008-06-041-3/+14
* Added SQL escaping for :limit and :offset in MySQL [Jonathan Wiess]David Heinemeier Hansson2008-06-011-1/+2
* Added SQL escaping for :limit and :offset [#288 state:closed] (Aaron Bedra, S...David Heinemeier Hansson2008-05-311-2/+7
* Ensure correct db time is reported in production logs.Pratik Naik2008-05-281-9/+5
* Merge docrails.Pratik Naik2008-05-255-21/+21
* Ensure add_column gives valid error for sqlite. [Gunnar Wolf, Pratik] [#197 s...Pratik Naik2008-05-201-0/+4
* Make sure clone_structure can load the results of dump_schema_informationSteven Soroka2008-05-171-1/+1
* Merge documentation changes from docrails.Pratik Naik2008-05-162-56/+54
* Merge docrails:Pratik Naik2008-05-095-24/+30
* create_table :force => true no longer tries to drop a non-existing tableTarmo Tänav2008-05-071-2/+2
* Added AbstractAdapter#table_exists? and made AbstractAdapter#table implementa...Tarmo Tänav2008-05-071-0/+4
* Restore dump_schema_information connection adapter methodKyle Hargraves2008-05-051-0/+6
* Added change_table for migrations (Jeff Dean) [#71 state:resolved]David Heinemeier Hansson2008-05-033-7/+265
* Improve documentation coverage and markupXavier Noria2008-05-025-9/+10
* Fixed that change_column should be able to use :null => true on a field that ...David Heinemeier Hansson2008-04-291-1/+8
* Default integer need not specify a limit [#20371 state:resolved] (matthuhiggins)David Heinemeier Hansson2008-04-291-1/+1
* Added that the MySQL adapter should map integer to either smallint, int, or b...David Heinemeier Hansson2008-04-251-0/+16
* Use schema.rb for all databasesFrederick Cheung2008-04-221-1/+1
* Fix sqlite adapter to work with the quoted table names returned by later vers...Frederick Cheung2008-04-211-1/+1
* Add support for interleaving migrations by storing which migrations have run ...Rick Olson2008-04-091-21/+29
* Improve documentation.Pratik Naik2008-04-051-3/+3
* Tiny change to allow AR based creation of TIME columns in sqlite. Closes #114...Michael Koziarski2008-04-041-1/+1
* PostgreSQL: create_ and drop_database support. Closes #9042.Jeremy Kemper2008-04-011-0/+44
* Switched to UTC-timebased version numbers for migrations and the schema. This...David Heinemeier Hansson2008-03-281-4/+12
* Migrations: create_table supports primary_key_prefix_type. Closes #10314.Jeremy Kemper2008-03-181-1/+1
* Added add/remove_timestamps to the schema statements for adding the created_a...David Heinemeier Hansson2008-03-131-0/+16
* Make the schema dumper respect the schema settings in database.yml. Referenc...Michael Koziarski2008-03-031-3/+5
* Make the mysql schema dumper roundtrip the limits of text/blob columns. Clos...Michael Koziarski2008-03-021-0/+17
* PostgreSQL: support server versions 7.4 through 8.0 and the ruby-pg driver. C...Jeremy Kemper2008-02-221-20/+70
* Refactor ActiveRecord::ConnectionAdapters::Column.new_time: leverage DateTime...Geoff Buesing2008-02-161-6/+2
* Optimisation for BigDecimal conversion code. Closes #11110 [adymo]Michael Koziarski2008-02-141-1/+4
* MySQL: memoize column and table name quoting to reduce garbageJeremy Kemper2008-02-031-7/+8
* MySQL: omit text/blob defaults from the schema instead of using an empty stri...Jeremy Kemper2008-01-301-1/+1