aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Ruby 1.9 compat: check column type more carefullyJeremy Kemper2007-12-191-10/+11
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-081-3/+3
* Quote table names. Defaults to column quoting. Closes #4593.Jeremy Kemper2007-10-161-13/+13
* Fix join table docs error in schema_statements. Closes #9880 [lawrence]Jeremy Kemper2007-10-161-1/+1
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-281-3/+3
* Fix spacingDavid Heinemeier Hansson2007-08-211-1/+1
* Migrations: add_column supports custom column types. Closes #7742. First-patc...Jeremy Kemper2007-05-251-14/+17
* Improve handling of LoadErrors with the oracle adapter. Closes #6780 [kubo]Michael Koziarski2007-01-161-1/+1
* Skip column options for primary keys. Closes #7048.Jeremy Kemper2007-01-151-1/+1
* change_column accepts :default => nil. Closes #6956.Jeremy Kemper2007-01-151-3/+8
* Oracle: create_table takes a :sequence_name option to override the 'tablename...Jeremy Kemper2007-01-151-2/+2
* PostgreSQL: use a subselect to correctly perform eager finds with :limit and ...Jeremy Kemper2007-01-121-0/+6
* Oracle: fix limited id selection for eager loading. Closes #6515.Jeremy Kemper2006-11-101-2/+5
* fix select_limited_ids_list issues in postgresql, retain current behavior in ...Rick Olson2006-10-131-0/+5
* Make indexed columns easy to extract from the index name. Oracle users should...Jeremy Kemper2006-08-151-1/+1
* Migrations: uniquely name multicolumn indexes so you don't have to.Jeremy Kemper2006-08-151-10/+8
* create_table rdoc: suggest :id => false for habtm join tablesJeremy Kemper2006-07-101-2/+2
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-081-5/+20
* Properly quote index names in migrations (closes #4764) [John Long]Rick Olson2006-04-201-6/+7
* Change periods (.) in table aliases to _'s. Closes #4251 [jeff@ministrycente...Rick Olson2006-03-261-1/+1
* Rework table aliasing to account for truncated table aliases. Add smarter ta...Rick Olson2006-03-181-6/+2
* Add AbstractAdapter#table_alias_for to create table aliases according to the ...Rick Olson2006-03-181-0/+14
* Add documentation for add_index and remove_index. Closes #3600.Marcel Molina2006-01-251-1/+11
* Document :force option to create_table. References #2921.Jeremy Kemper2005-11-171-0/+3
* Added migration support for Oracle (closes #2647) [Michael Schoen]David Heinemeier Hansson2005-10-291-1/+1
* Fixed SQL Server adapter so it honors options[:conditions] when applying :lim...David Heinemeier Hansson2005-10-281-1/+1
* Added migration support to SQL Server adapter (please someone do the same for...David Heinemeier Hansson2005-10-281-6/+8
* Add rename_table to mysql, sqlite and postgres adapters for use in migrationsTobias Lütke2005-10-061-1/+8
* Added :force option to create_table that'll try to drop the table if it alrea...David Heinemeier Hansson2005-10-061-0/+5
* Add extensive documentation to the ActiveRecord::AbstractAdapter. #2250Marcel Molina2005-09-271-18/+114
* Make migrations honor table name prefixes and suffixes.Marcel Molina2005-09-261-3/+3
* Get rid of warnings generated by calling obsolete .to_a method on a SymbolMarcel Molina2005-09-261-4/+4
* Refactored the AbstractAdapter to be a lot less scary. Cleaned up the docs an...David Heinemeier Hansson2005-09-251-0/+137