aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/migration.rb
Commit message (Expand)AuthorAgeFilesLines
* moving verbosity tests to the migrator test, removing ddl changesAaron Patterson2012-01-161-2/+1
* silencing migrator tests, refactoring the migration test helperAaron Patterson2012-01-161-1/+2
* refactor schema migration table creation to the schema migration modelAaron Patterson2012-01-131-1/+1
* convert the migration list to a Set, remove duplicate codeAaron Patterson2012-01-131-16/+14
* deprecate the block argument to Migrator#migrateAaron Patterson2012-01-131-8/+19
* refactor the migrate method to filter migrations before running themAaron Patterson2012-01-131-25/+32
* use the model to delete recordsAaron Patterson2012-01-131-4/+1
* use the schema migration model to create a new recordAaron Patterson2012-01-131-2/+1
* moving migrator tests to a migrator test classAaron Patterson2012-01-131-38/+41
* add a migration schema modelAaron Patterson2012-01-131-3/+3
* construct a migrator with a list of migrations rather than a list of pathsAaron Patterson2012-01-131-18/+29
* move column ordering tests to it's own classAaron Patterson2012-01-101-10/+2
* deprecate the subdirectories parameter to `migrations`Aaron Patterson2012-01-101-2/+10
* migrate(:down) method with table_name_prefixkennyj2012-01-111-6/+22
* Remove Array.wrap calls in ActiveRecordRafael Mendonça França2012-01-061-3/+2
* Allow to filter migrations by passing a blockPiotr Sarnacki2011-12-091-9/+13
* Compare migrations for copying only by name and scopePiotr Sarnacki2011-12-091-22/+6
* Add suffix for migrations copied from enginesPiotr Sarnacki2011-12-091-5/+5
* String#to_a is not available in 1.9Piotr Sarnacki2011-12-091-1/+1
* Run also migrations in subdirectories.Piotr Sarnacki2011-12-091-2/+3
* Ignore origin comment when checking for duplicates on Migration.copyPiotr Sarnacki2011-12-091-2/+20
* Fix copying migrations from enginesPiotr Sarnacki2011-12-091-3/+3
* reversible migration example had missing block parameterEvgeniy Kelyarsky2011-12-071-1/+1
* add prefix and suffix to renamed tables, closes #1510Vasiliy Ermolovich2011-12-061-0/+1
* document fix: remove_column takes multiple column_namesAkira Matsuda2011-11-071-2/+2
* AR changes to support creating ordered (asc, desc) indexesVlad Jebelev2011-11-041-2/+3
* Make it the responsibility of the connection to hold onto an ARel visitor for...Jon Leighton2011-08-081-3/+3
* add a migrate class method and delegate to the new instanceAaron Patterson2011-08-021-1/+4
* Support backwards compatible interface for migration down/up with rails 3.0.x.Christopher Meiklejohn2011-08-021-0/+1
* Explicitly require Active Support dependenciesNorman Clarke2011-07-191-0/+2
* minor changesVijay Dev2011-06-271-2/+2
* replace find(all) with allVijay Dev2011-06-261-3/+3
* Update remove_index documentationLucia Escanellas2011-06-171-2/+4
* up and down are no longer class methods in a migrationVijay Dev2011-06-071-1/+1
* require core_ext/array/wrap in active_record/migrationPiotr Sarnacki2010-12-101-0/+2
* Use Array.wrap instead of using ternaryPiotr Sarnacki2010-12-091-2/+2
* Allow to run migrations from more than one directoryPiotr Sarnacki2010-12-091-24/+33
* in the middle of refactoringAaron Patterson2010-12-031-0/+4
* remove calls to deprecated methodsAaron Patterson2010-12-021-1/+2
* avoiding deprecated methods in arelAaron Patterson2010-12-021-1/+2
* rolling out migrated_at until I can fix the buildAaron Patterson2010-12-011-11/+7
* name in schema_migrations, migrations in schema dumpJosh Susser2010-12-011-0/+1
* record migration timestamp when migrations runJosh Susser2010-12-011-7/+10
* adding documentation for reversible migrationsAaron Patterson2010-11-191-0/+32
* invertable migrations are workingAaron Patterson2010-11-191-1/+19
* partial implementation of the command recorderAaron Patterson2010-11-191-0/+2
* this return value is not used, so stop returning itAaron Patterson2010-11-191-4/+1
* instantiate the delegate object after initialize is defined so that our initi...Aaron Patterson2010-11-191-3/+4
* connection is set from the connection pool during migrationsAaron Patterson2010-11-181-4/+10
* adding an initialize with name and version defaultsAaron Patterson2010-11-171-4/+5