aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* 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
* r1611@asus: jeremy | 2005-07-03 04:21:52 -0700Jeremy Kemper2005-07-035-46/+41
* r1610@asus: jeremy | 2005-07-03 00:19:06 -0700Jeremy Kemper2005-07-031-2/+0
* r1607@asus: jeremy | 2005-07-02 23:36:52 -0700Jeremy Kemper2005-07-031-7/+7
* r1603@asus: jeremy | 2005-07-02 14:38:52 -0700Jeremy Kemper2005-07-036-85/+86
* Added support for ODBC connections to MS SQL Server so you can connect from a...David Heinemeier Hansson2005-07-013-111/+145
* Make migrations work with the latest SQLiteDavid Heinemeier Hansson2005-06-211-10/+10
* r1278@iwill: jeremy | 2005-06-12 05:11:48 -0700Jeremy Kemper2005-06-121-50/+62
* Return PostgreSQL columns in the order they are declared #1374 (perlguy@gmail...Jeremy Kemper2005-06-121-18/+17
* Added encoding and min_messages options for PostgreSQL #1205 [shugo]David Heinemeier Hansson2005-04-301-0/+6
* Fixes a problem with the SQL Adapter which was resulting in IDENTITY_INSERT n...David Heinemeier Hansson2005-04-171-2/+1
* Made migrations create InnoDB tables per defaultDavid Heinemeier Hansson2005-04-162-2/+6
* Fixed boolean saving on Oracle #1093 [mparrish@pearware.org]David Heinemeier Hansson2005-04-131-2/+2
* Fixed check_box with postgresql booleans is more work now again #995David Heinemeier Hansson2005-04-071-1/+1
* Fixed boolean queries for t/f fields in PostgreSQL #995 [dave@cherryville.org]David Heinemeier Hansson2005-04-021-1/+1
* Fixed auto-stamping of dates (created_on/updated_on) for PostgreSQL #985 [dav...David Heinemeier Hansson2005-04-021-6/+6
* Fixed the MS SQL adapter to work with the new limit/offset approach and with ...David Heinemeier Hansson2005-03-231-127/+133
* Added adapter independent limit clause as a two-element array with the first ...David Heinemeier Hansson2005-03-205-20/+29