aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Ruby 1.9 compat: don't use obsolete ParseDateJeremy Kemper2008-01-031-1/+1
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-223-3/+4
* SQLite: fix rename_ and remove_column for columns with unique indexes. Closes...Jeremy Kemper2007-12-201-6/+13
* Ruby 1.9 compat: check column type more carefullyJeremy Kemper2007-12-192-11/+16
* Reveal that the type option in migrations can be any supported column type fo...Marcel Molina2007-12-051-1/+6
* Document the timestamps schema definition method. Closes #9000 [mikong]Marcel Molina2007-12-051-0/+2
* Handle 8.1 default formatting. Closes #10333 [Tim Pope]Jeremy Kemper2007-12-021-0/+3
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-241-2/+1
* PostgreSQL: correct binary escaping. References #8049, closes #10176 [jbasdf,...Jeremy Kemper2007-11-221-2/+2
* Use debug, not info as log_info will discard the information if info is used.Michael Koziarski2007-11-171-1/+1
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-086-20/+21
* Standardize on using hyphens rather than colons to separate option names from...Marcel Molina2007-11-061-5/+5
* Use the safe conversion code introduced in earlier commit. References #10068...Michael Koziarski2007-11-051-1/+1
* Foxy fixtures. Adapter#disable_referential_integrity. Closes #9981.Jeremy Kemper2007-10-263-0/+27
* Remove superfluous code and quote table name. References #9971 [jkit, nzkoz]Michael Koziarski2007-10-251-2/+1
* Make clear_reloadable_connections! take account of @@allow_concurrency. Clos...Michael Koziarski2007-10-251-4/+17
* Make sure that the Schema Dumper supports non-standard primary keys with MySQ...Michael Koziarski2007-10-251-0/+10
* Ensure that mysql quotes table names with database names correctly. Closes #...Rick Olson2007-10-201-1/+1
* Add t.belongs_to and t.references to sexy migrations [arthurgeek]Michael Koziarski2007-10-191-0/+30
* Quote table names. Defaults to column quoting. Closes #4593.Jeremy Kemper2007-10-165-31/+49
* Fix join table docs error in schema_statements. Closes #9880 [lawrence]Jeremy Kemper2007-10-161-1/+1
* Factor out checks for duplicable objects. Closes #9333.Jeremy Kemper2007-10-151-5/+2
* PostgreSQL: support multiline default values. Closes #7533.Jeremy Kemper2007-10-081-14/+14
* Dr Math meets Captain Obvious.Jeremy Kemper2007-10-081-1/+1
* MySQL: fix change_column on not-null columns that don't accept dfeault values...Jeremy Kemper2007-10-081-2/+2
* Use fast date/time parsing by default. Closes #9811.Jeremy Kemper2007-10-072-34/+33
* Reinstate failsafe date/time parsing rescues. Head off some obvious failures ...Jeremy Kemper2007-10-072-22/+29
* MySQL: speedup date/time parsing.Jeremy Kemper2007-10-072-58/+94
* Allow change_column to set NOT NULL in the PostgreSQL adaptor. Closes #3904 [...Michael Koziarski2007-10-071-17/+12
* Send the correct INSERT statement when dealing with objects with only primary...Michael Koziarski2007-10-062-0/+7
* Try loading activerecord-<adaptername>-adapter gem before trying a plain requ...Jeremy Kemper2007-10-041-8/+3
* Don't implicitly assign instance variables by using them as block argumentsJeremy Kemper2007-09-301-1/+2
* Remove DB2 adapter since IBM chooses to maintain their own adapter instead.Jeremy Kemper2007-09-291-242/+0
* Extract Oracle, SQLServer, and Sybase adapters into gems.Jeremy Kemper2007-09-293-2007/+0
* Ruby 1.9 compat for instance method check in Mysql adapter.Jeremy Kemper2007-09-291-1/+2
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-286-9/+9
* MySQL: change_column raises if the table or column doesn't exist.Jeremy Kemper2007-09-281-1/+5
* Fixed rename_column for SQLite when using symbols for the column names (close...David Heinemeier Hansson2007-09-221-2/+3
* Stress that you should really install the C-based MySQL library when running ...David Heinemeier Hansson2007-09-201-0/+5
* Don't worry about retrieving the last inserted id. [tarmo_t]Jeremy Kemper2007-09-171-1/+1
* Speed up and simplify query caching.Jeremy Kemper2007-09-1710-62/+154
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-166-9/+79
* Extract Firebird, FronBase, and OpenBase adapters into gems. Closes #9508, #9...Jeremy Kemper2007-09-153-2050/+0
* RubyGem database adapters: expects a gem named activerecord-<database>-adapte...Jeremy Kemper2007-09-151-3/+19
* Fixed that altering join tables in migrations would fail w/ sqlite3 #7453 [Ti...David Heinemeier Hansson2007-09-151-1/+2
* OpenBase: update for new lib and latest Rails. Support migrations. Closes #8748.Jeremy Kemper2007-09-131-119/+229
* minor speedups + forward-compat syntaxJeremy Kemper2007-09-132-4/+4
* Work around mysql limitations for defaults on text columns with not null. Cl...Michael Koziarski2007-09-041-0/+1
* Fix spacingDavid Heinemeier Hansson2007-08-212-2/+2
* Improve performance and functionality of the postgresql adapter. Closes #804...Michael Koziarski2007-08-162-179/+422