aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
...
* Quote booleans according the rules defined by the adapterMichael Koziarski2005-10-061-3/+7
* Added :force option to create_table that'll try to drop the table if it alrea...David Heinemeier Hansson2005-10-061-0/+5
* Forced newer versions of RedCloth to use hard breaks [DHH]David Heinemeier Hansson2005-10-021-2/+4
* Get rid of old symbolize_strings_in_hash.Jeremy Kemper2005-09-303-18/+9
* Ticket #2282 - fix parsing of timestamps with time zoneJeremy Kemper2005-09-301-1/+3
* No need to string.to_s right after checking that string.is_a?(String)Jeremy Kemper2005-09-301-3/+3
* Fix broken testcase for transactionsNicholas Seckar2005-09-291-6/+10
* Fix transactions so that calling return while inside a transaction will not l...Nicholas Seckar2005-09-281-4/+7
* Make schema definition column lookups agnostic w/r/t/ whether a key or symbol...Marcel Molina2005-09-281-2/+2
* Ticket 2256 - Recognize PostgreSQL NOW() default as equivalent to CURRENT_TIM...Jeremy Kemper2005-09-271-1/+1
* Add extensive documentation to the ActiveRecord::AbstractAdapter. #2250Marcel Molina2005-09-276-38/+210
* Make migrations honor table name prefixes and suffixes.Marcel Molina2005-09-261-3/+3
* r3597@asus: jeremy | 2005-09-26 17:39:23 -0700Jeremy Kemper2005-09-261-5/+5
* r3590@asus: jeremy | 2005-09-26 17:00:53 -0700Jeremy Kemper2005-09-261-7/+43
* Get rid of warnings generated by calling obsolete .to_a method on a SymbolMarcel Molina2005-09-261-4/+4
* Remove duplicate 'quote_column_name' definitionJamis Buck2005-09-251-5/+1
* Refactored the AbstractAdapter to be a lot less scary. Cleaned up the docs an...David Heinemeier Hansson2005-09-259-708/+789
* Standardize the interpretation of boolean columns in the Mysql and Sqlite ada...Jamis Buck2005-09-253-7/+33
* Fix migrations with PG 7.x.Scott Barron2005-09-251-0/+13
* Added AbstractAdapter#select_value and AbstractAdapter#select_values as conve...David Heinemeier Hansson2005-09-241-0/+13
* Make the sqlite adapter preserve not-null constraints and index names when al...Jamis Buck2005-09-241-3/+12
* Allow the postgresql adapter to work with the SchemaDumper.Jamis Buck2005-09-231-4/+48
* Post the postgresql adapter (and hopefully other adapters) pass all testsJamis Buck2005-09-232-4/+10
* Make sqlite adapter pass all testsJamis Buck2005-09-231-3/+9
* Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby file, m...Jamis Buck2005-09-233-24/+87
* Added dump of schema version to the db_structure_dump task for databases that...David Heinemeier Hansson2005-09-121-1/+11
* Rolled back broken #1814David Heinemeier Hansson2005-09-111-9/+1
* Added better exception error when unknown column types are used with migratio...David Heinemeier Hansson2005-09-111-1/+8
* Fixed that the SQL Server adapter would sometimes return DBI::Timestamp objec...David Heinemeier Hansson2005-09-091-0/+1
* Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail...Jamis Buck2005-07-302-7/+13
* Fix create_table so that id column is implicitly added [Rick Olson]Jamis Buck2005-07-271-5/+2
* Made Oracle a first-class connection adapter by adhering closer to idiomatic ...David Heinemeier Hansson2005-07-247-32/+108
* Added migration support for SQLite (using temporary tables to simulate ALTER ...David Heinemeier Hansson2005-07-222-17/+143
* Remove extra definition of supports_migrations? from abstract_adaptor.rbNicholas Seckar2005-07-221-4/+0
* Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718...David Heinemeier Hansson2005-07-172-8/+7
* Fixed that each request with the WEBrick adapter would open a new database co...David Heinemeier Hansson2005-07-101-6/+12
* Fixed optimistic locking with SQL Server #1660 [tom@popdog.net]David Heinemeier Hansson2005-07-091-2/+2
* Fixed SQL Server test #1678 [Tom Ward]David Heinemeier Hansson2005-07-091-1/+1
* Added better error message for "packets out of order" #1630 [courtenay]David Heinemeier Hansson2005-07-081-0/+2
* Fixed first run of "rake migrate" on PostgreSQL by not expecting a return val...David Heinemeier Hansson2005-07-071-1/+1
* Made documentation ready for release (AR)David Heinemeier Hansson2005-07-061-43/+41
* Changed logging of SQL statements to use the DEBUG level instead of INFO. Add...David Heinemeier Hansson2005-07-051-1/+1
* Made default changes work in both postgresql and mysql #1612 [Tobias Luetke]David Heinemeier Hansson2005-07-053-6/+21
* Sugared up migrations with even more bling #1609 [Tobias Luekte]David Heinemeier Hansson2005-07-053-24/+105
* Added new Migrations framework for describing schema transformations in a way...David Heinemeier Hansson2005-07-043-5/+40
* Fixed migration initialization of tableDavid Heinemeier Hansson2005-07-041-1/+1
* Fixed Base.content_columns call for SQL Server adapter #1450 [DeLynn Berry] A...David Heinemeier Hansson2005-07-031-1/+5
* r1617@asus: jeremy | 2005-07-03 08:23:31 -0700Jeremy Kemper2005-07-031-29/+27
* r1616@asus: jeremy | 2005-07-03 08:07:13 -0700Jeremy Kemper2005-07-031-1/+1
* r1612@asus: jeremy | 2005-07-03 04:35:59 -0700Jeremy Kemper2005-07-031-5/+3