aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Document that index names are made up of all columns, not just the first.Jo Liss2011-12-271-9/+2
* Revert naive O(1) table_exists? implementation.Jon Leighton2011-12-131-6/+1
* don't need a begin / end.Aaron Patterson2011-12-091-6/+4
* squelch table exists? queries.Aaron Patterson2011-12-091-1/+1
* Quitoting the table name before querying.Aaron Patterson2011-12-051-1/+1
* Speed up table_exists? for databases with a large number of tablesJade Rubick2011-12-051-1/+6
* Deprecate set_primary_key in favour of self.primary_key=Jon Leighton2011-11-291-1/+1
* Revert "Merge pull request #1163 from amatsuda/sexier_migration_31"Aaron Patterson2011-11-171-8/+2
* Revert "Merge pull request #3603 from vijaydev/change_table_without_block_arg"Aaron Patterson2011-11-171-12/+7
* Adding a deprecation warning for use of the schema_info table.Aaron Patterson2011-11-161-0/+2
* Modify change_table to remove the need for the block argument.Vijay Dev2011-11-111-7/+12
* Checking the arity of the block passed to create_tableVijay Dev2011-11-101-1/+7
* AR changes to support creating ordered (asc, desc) indexesVlad Jebelev2011-11-041-1/+29
* Merge pull request #1163 from amatsuda/sexier_migration_31Aaron Patterson2011-11-041-2/+2
|\
| * No "t." for the migration DSL!Akira Matsuda2011-05-201-2/+2
* | dump_schema_information: explicitly order inserts into schema_migrations tableLaust Rud Jacobsen2011-10-311-1/+1
* | Default timestamps to non-nullMike Perham2011-10-141-2/+2
* | Update remove_index documentationLucia Escanellas2011-06-171-4/+4
* | No need to pass options which is never usedAkira Matsuda2011-05-291-2/+2
* | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-251-3/+3
|\ \
| * | Remove extra white spaces on ActiveRecord docs.Sebastian Martinez2011-05-231-3/+3
| |/
* / Remove extra white-space on some exception messages.Sebastian Martinez2011-05-231-1/+1
|/
* dot missing hereSebastian Martinez2011-04-221-1/+1
* Added doc for #table_exists?Sebastian Martinez2011-04-221-0/+4
* Remove incorrect comment that a default value of NULL cannot be set with chan...Manuel Meurer2011-03-161-3/+2
* Add :bulk => true option to change_tablePratik Naik2011-01-311-31/+59
* move ivar to initialize, use triple dot rather than minusAaron Patterson2010-12-161-1/+1
* Use Array.wrap instead of using ternaryPiotr Sarnacki2010-12-091-1/+1
* Allow to run migrations from more than one directoryPiotr Sarnacki2010-12-091-2/+4
* rolling out migrated_at until I can fix the buildAaron Patterson2010-12-011-15/+3
* tests mostly passJosh Susser2010-12-011-2/+2
* name in schema_migrations, migrations in schema dumpJosh Susser2010-12-011-0/+4
* Add migrated_at column to schema_migrations table.Josh Susser2010-12-011-1/+9
* use inheritence to deal with custom methodsAaron Patterson2010-09-291-4/+9
* Test add_index and remove_index with a symbol name #4891Étienne Barrié2010-09-281-4/+3
* Fix remove_index issue when provided :name is a symbolTim Connor2010-09-261-1/+1
* Fix issue with remove_index and add unit test [#5645 state:resolved]Tim Connor2010-09-181-2/+1
* Raise errors when index creation failsTim Connor2010-09-181-4/+2
* Revert "Setup explicit requires for files with exceptions. Removed them from ...José Valim2010-09-021-1/+0
* Setup explicit requires for files with exceptions. Removed them from autoload...Łukasz Strzałkowski2010-09-021-0/+1
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-2/+2
* Removing most of the symbol to proc usage in Active RecordPrem Sichanugrist2010-08-131-1/+1
* Allow :name to be a Symbol (was this removed by accident?)wycats2010-08-031-0/+2
* copy-edits some docsXavier Noria2010-07-081-6/+5
* clarifying how to create non standard primary keyNeeraj Singh2010-07-081-1/+7
* Fixed error when removing an index from a table name values, which is a reser...J. Pablo Fernández2010-06-291-1/+1
* Refactor of column_exists? method and this works with PostgreSQLSantiago Pastorino2010-06-261-12/+6
* Add column and index query methods to ActiveRecord::SchemaAndrew White2010-06-261-4/+53
* remove_column should raise an ArgumentError when no columns are passed [#4803...Jeff Dean2010-06-231-0/+1
* make add_index and remove_index more resilient; new rename_index method; trac...Étienne Barrié2010-05-181-6/+39