aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Avoid deprecated String#to_a by using Array.wrap(...) instead of Array(...)Jeremy Kemper2010-04-101-2/+4
* remove_index now uses quote_table_name() [#4300 state:resolved]Simon Effenberg2010-04-061-1/+1
* Allow AR::Schema's migrations_path to be overwritten by subclasses. Defaults ...Jeffrey Hardy2010-01-081-2/+2
* Merge commit 'rails/master'Emilio Tagua2009-08-101-2/+2
|\
| * Use table prefix and suffix for schema_migrations index.Tim Peters2009-08-091-1/+1
| * Fix that creating a table whose primary key prefix type is :table_name genera...Morgan Schweers2009-08-091-1/+1
* | Merge commit 'rails/master'Emilio Tagua2009-07-311-0/+8
|\|
| * Merge docrailsPratik Naik2009-07-251-0/+8
* | Merge commit 'rails/master'Emilio Tagua2009-06-231-1/+1
|\|
| * Fixed a bug where create_table could not be called without a block [#2221 sta...Joseph Wilk2009-06-211-1/+1
* | Arel now buils SQL queries for associations. Removed old code andEmilio Tagua2009-06-231-6/+0
|/
* Use table_exists? in #initialize_schema_migrations_table [#1923 state:resolved]Ken Collins2009-05-011-2/+2
* Merge docrailsPratik Naik2008-10-051-2/+8
* Don't set "NULL" as a constraint on nullable columns [#398 state:resolved]Tarmo Tänav2008-08-231-6/+2
* Merge with docrails.Pratik Naik2008-07-161-1/+1
* Don't append limit to primary key column definition. Freeze some constants.Jeremy Kemper2008-06-081-2/+2
* Give a nice message if there are duplicate migrations instead of raising a st...Jeremy Kemper2008-06-041-3/+14
* Merge docrails.Pratik Naik2008-05-251-1/+1
* 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-161-10/+10
* 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-031-4/+69
* Improve documentation coverage and markupXavier Noria2008-05-021-1/+1
* Fixed that change_column should be able to use :null => true on a field that ...David Heinemeier Hansson2008-04-291-1/+8
* 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
* 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