Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | moving ordered hash to normal hash because ruby 1.9.3 hash defaultly ordered one | Karunakar (Ruby) | 2012-02-09 | 1 | -5/+5 |
| | |||||
* | stop more ddl changes | Aaron Patterson | 2012-01-16 | 1 | -14/+0 |
| | |||||
* | stop ddl modifications for another test | Aaron Patterson | 2012-01-16 | 1 | -12/+0 |
| | |||||
* | stop making ddl changes for migrator tests | Aaron Patterson | 2012-01-16 | 1 | -55/+0 |
| | |||||
* | move another migrator to use sensors | Aaron Patterson | 2012-01-16 | 1 | -12/+0 |
| | |||||
* | moving verbosity tests to the migrator test, removing ddl changes | Aaron Patterson | 2012-01-16 | 1 | -18/+0 |
| | |||||
* | silencing migrator tests, refactoring the migration test helper | Aaron Patterson | 2012-01-16 | 1 | -22/+1 |
| | |||||
* | fix tests on sqlite3 | Aaron Patterson | 2012-01-16 | 1 | -0/+4 |
| | |||||
* | prefer method sensors over actual ddl changes | Aaron Patterson | 2012-01-16 | 1 | -69/+0 |
| | |||||
* | test that migrations have connections, and method missing delegates | Aaron Patterson | 2012-01-16 | 1 | -7/+16 |
| | |||||
* | making sure the temp connection and the real connection are different after dup | Aaron Patterson | 2012-01-16 | 1 | -3/+3 |
| | |||||
* | stop depending on the filesystem for interleaved migration tests | Aaron Patterson | 2012-01-13 | 1 | -21/+0 |
| | |||||
* | refactor the migrate method to filter migrations before running them | Aaron Patterson | 2012-01-13 | 1 | -1/+1 |
| | |||||
* | move schema dumper tests to the correct class | Aaron Patterson | 2012-01-13 | 1 | -9/+0 |
| | |||||
* | move another migrator test, use schema migration model | Aaron Patterson | 2012-01-13 | 1 | -10/+0 |
| | |||||
* | move another migrator test to the correct class | Aaron Patterson | 2012-01-13 | 1 | -11/+0 |
| | |||||
* | moving more migrator tests to the right test case | Aaron Patterson | 2012-01-13 | 1 | -40/+0 |
| | |||||
* | test code that finds migrations | Aaron Patterson | 2012-01-13 | 1 | -6/+1 |
| | |||||
* | moving migrator tests to a migrator test class | Aaron Patterson | 2012-01-13 | 1 | -18/+0 |
| | |||||
* | adding a test class for table renaming | Aaron Patterson | 2012-01-13 | 1 | -70/+0 |
| | |||||
* | moving more column renaming tests | Aaron Patterson | 2012-01-13 | 1 | -71/+0 |
| | |||||
* | moving more renaming tests to the proper test case | Aaron Patterson | 2012-01-13 | 1 | -93/+0 |
| | |||||
* | moving rename column tests to their own class | Aaron Patterson | 2012-01-13 | 1 | -87/+11 |
| | |||||
* | moving column attributes tests to their own class | Aaron Patterson | 2012-01-13 | 1 | -169/+0 |
| | |||||
* | remove unused code | Aaron Patterson | 2012-01-13 | 1 | -1/+0 |
| | |||||
* | use ruby rather than mocha | Aaron Patterson | 2012-01-13 | 1 | -1/+3 |
| | |||||
* | move tests regarding index modification to their own class | Aaron Patterson | 2012-01-13 | 1 | -18/+0 |
| | |||||
* | decoupling more tests from AR::Base | Aaron Patterson | 2012-01-13 | 1 | -24/+0 |
| | |||||
* | use skip rather than conditionally define tests | Aaron Patterson | 2012-01-13 | 1 | -66/+68 |
| | |||||
* | skip openbase test | Aaron Patterson | 2012-01-13 | 1 | -3/+3 |
| | |||||
* | move more schema modification tests | Aaron Patterson | 2012-01-13 | 1 | -63/+0 |
| | |||||
* | instantiate our own broken migration rather than relying on the filesystem | Aaron Patterson | 2012-01-13 | 1 | -5/+9 |
| | |||||
* | use skip so we know what tests are being skipped | Aaron Patterson | 2012-01-13 | 1 | -10/+12 |
| | |||||
* | moving logger test to its own file | Aaron Patterson | 2012-01-13 | 1 | -13/+0 |
| | |||||
* | construct a migrator with a list of migrations rather than a list of paths | Aaron Patterson | 2012-01-13 | 1 | -4/+14 |
| | |||||
* | moving the table and index test to it's own file | Aaron Patterson | 2012-01-12 | 1 | -19/+0 |
| | |||||
* | all tested database support migrations, so stop making the tests conditional | Aaron Patterson | 2012-01-10 | 1 | -1436/+1434 |
| | |||||
* | refactoring migration test | Aaron Patterson | 2012-01-10 | 1 | -447/+1 |
| | |||||
* | Allow to filter migrations by passing a block | Piotr Sarnacki | 2011-12-09 | 1 | -0/+18 |
| | | | | | | | | | | Example: ActiveRecord::Migrator.migrate(path) do |migration| migration.name =~ /User/ end The above example will migrate only migrations with User in the name | ||||
* | Compare migrations for copying only by name and scope | Piotr Sarnacki | 2011-12-09 | 1 | -26/+1 |
| | |||||
* | Add suffix for migrations copied from engines | Piotr Sarnacki | 2011-12-09 | 1 | -23/+23 |
| | |||||
* | String#to_a is not available in 1.9 | Piotr Sarnacki | 2011-12-09 | 1 | -1/+1 |
| | |||||
* | Run also migrations in subdirectories. | Piotr Sarnacki | 2011-12-09 | 1 | -0/+9 |
| | | | | | With this commit, ActiveRecord will also look for migrations in db/migrate subdirectories. | ||||
* | Ignore origin comment when checking for duplicates on Migration.copy | Piotr Sarnacki | 2011-12-09 | 1 | -3/+29 |
| | | | | | | | 49ebe51 fixed copying migrations, but existing migrations would still trigger warnings. The proper way to compare migrations is to ignore origin lines - if migration is identical it means that we can silently skip it, regardless where it comes from. | ||||
* | Fix copying migrations from engines | Piotr Sarnacki | 2011-12-09 | 1 | -0/+21 |
| | | | | | | | | | | There was a bug in ActiveRecord::Migration.copy method, which prevented adding special comment about the origin of migration. Because of that, the check if migration is identical or if it's not and should be skipped was always saying that migration is skipped, which was causing additional useless warnings about skipped migrations. | ||||
* | avoid deprecated methods | Aaron Patterson | 2011-12-06 | 1 | -1/+1 |
| | |||||
* | add prefix and suffix to renamed tables, closes #1510 | Vasiliy Ermolovich | 2011-12-06 | 1 | -0/+31 |
| | |||||
* | Deprecate set_table_name in favour of self.table_name= or defining your own ↵ | Jon Leighton | 2011-11-29 | 1 | -1/+1 |
| | | | | method. | ||||
* | Revert "Merge pull request #1163 from amatsuda/sexier_migration_31" | Aaron Patterson | 2011-11-17 | 1 | -120/+0 |
| | | | | | | | | | | This reverts commit 0e407a90413d8a19002b85508d811ccdf2190783, reversing changes made to 533a9f84b035756eedf9fdccf0c494dc9701ba72. Conflicts: activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb activerecord/test/cases/migration_test.rb | ||||
* | Revert "Merge pull request #3603 from vijaydev/change_table_without_block_arg" | Aaron Patterson | 2011-11-17 | 1 | -54/+0 |
| | | | | | | | | | This reverts commit 81fad6a270ec3cbbb88553c9f2e8200c34fd4d13, reversing changes made to 23101de283de13517e30c4c3d1ecc65525264886. Conflicts: activerecord/test/cases/migration_test.rb |