aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration_test.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* move another migrator test to the correct classAaron Patterson2012-01-131-11/+0
|
* moving more migrator tests to the right test caseAaron Patterson2012-01-131-40/+0
|
* test code that finds migrationsAaron Patterson2012-01-131-6/+1
|
* moving migrator tests to a migrator test classAaron Patterson2012-01-131-18/+0
|
* adding a test class for table renamingAaron Patterson2012-01-131-70/+0
|
* moving more column renaming testsAaron Patterson2012-01-131-71/+0
|
* moving more renaming tests to the proper test caseAaron Patterson2012-01-131-93/+0
|
* moving rename column tests to their own classAaron Patterson2012-01-131-87/+11
|
* moving column attributes tests to their own classAaron Patterson2012-01-131-169/+0
|
* remove unused codeAaron Patterson2012-01-131-1/+0
|
* use ruby rather than mochaAaron Patterson2012-01-131-1/+3
|
* move tests regarding index modification to their own classAaron Patterson2012-01-131-18/+0
|
* decoupling more tests from AR::BaseAaron Patterson2012-01-131-24/+0
|
* use skip rather than conditionally define testsAaron Patterson2012-01-131-66/+68
|
* skip openbase testAaron Patterson2012-01-131-3/+3
|
* move more schema modification testsAaron Patterson2012-01-131-63/+0
|
* instantiate our own broken migration rather than relying on the filesystemAaron Patterson2012-01-131-5/+9
|
* use skip so we know what tests are being skippedAaron Patterson2012-01-131-10/+12
|
* moving logger test to its own fileAaron Patterson2012-01-131-13/+0
|
* construct a migrator with a list of migrations rather than a list of pathsAaron Patterson2012-01-131-4/+14
|
* moving the table and index test to it's own fileAaron Patterson2012-01-121-19/+0
|
* all tested database support migrations, so stop making the tests conditionalAaron Patterson2012-01-101-1436/+1434
|
* refactoring migration testAaron Patterson2012-01-101-447/+1
|
* Allow to filter migrations by passing a blockPiotr Sarnacki2011-12-091-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 scopePiotr Sarnacki2011-12-091-26/+1
|
* Add suffix for migrations copied from enginesPiotr Sarnacki2011-12-091-23/+23
|
* String#to_a is not available in 1.9Piotr Sarnacki2011-12-091-1/+1
|
* Run also migrations in subdirectories.Piotr Sarnacki2011-12-091-0/+9
| | | | | With this commit, ActiveRecord will also look for migrations in db/migrate subdirectories.
* Ignore origin comment when checking for duplicates on Migration.copyPiotr Sarnacki2011-12-091-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 enginesPiotr Sarnacki2011-12-091-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 methodsAaron Patterson2011-12-061-1/+1
|
* add prefix and suffix to renamed tables, closes #1510Vasiliy Ermolovich2011-12-061-0/+31
|
* Deprecate set_table_name in favour of self.table_name= or defining your own ↵Jon Leighton2011-11-291-1/+1
| | | | method.
* Revert "Merge pull request #1163 from amatsuda/sexier_migration_31"Aaron Patterson2011-11-171-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 Patterson2011-11-171-54/+0
| | | | | | | | | This reverts commit 81fad6a270ec3cbbb88553c9f2e8200c34fd4d13, reversing changes made to 23101de283de13517e30c4c3d1ecc65525264886. Conflicts: activerecord/test/cases/migration_test.rb
* Merge pull request #3371 from yahonda/fix_ora_00932_errorAaron Patterson2011-11-141-1/+1
|\ | | | | Fix ORA-00932 error when trying to insert 0 to DATE type columns.
| * Fix ORA-00932 error when trying to insert 0 to DATE type columns.Yasuo Honda2011-10-191-1/+1
| |
* | change_table bulk test case should check if the connection supports bulk alterVijay Dev2011-11-111-13/+15
| |
* | Modify change_table to remove the need for the block argument.Vijay Dev2011-11-111-0/+52
| |
* | Checking the arity of the block passed to create_tableVijay Dev2011-11-101-0/+15
| | | | | | | | | | | | A recent change made to create_table does away with the need for the block argument. Checking the arity will prevent the mixing up of the two syntaxes.
* | AR changes to support creating ordered (asc, desc) indexesVlad Jebelev2011-11-041-0/+12
| |
* | Merge pull request #1163 from amatsuda/sexier_migration_31Aaron Patterson2011-11-041-0/+20
|\ \ | | | | | | Sexier migrations
| * | Tests for new create_table DSLAkira Matsuda2011-05-201-0/+20
| | |
* | | assert_match takes a regexp and a string in that orderVijay Dev2011-10-311-1/+1
| | |
* | | dump_schema_information: explicitly order inserts into schema_migrations tableLaust Rud Jacobsen2011-10-311-0/+9
| | | | | | | | | | | | | | | | | | | | | This change reduces churn in the db/development_structure.sql file when using :sql as active_record.schema_format, and makes comparing diffs much easier. Test ensures the output SQL-statements are lexically ordered by version.
* | | preserve decimal column attributes after migrationGreg Reinacker2011-10-211-0/+36
| |/ |/|
* | only use now() on pg!Aaron Patterson2011-10-181-1/+3
| |
* | use now() for dates in pgAaron Patterson2011-10-181-1/+1
| |
* | Default timestamps to non-nullMike Perham2011-10-141-5/+5
| |
* | Changed the default value for the options argument on ↵Grant Neufeld2011-06-181-0/+12
| | | | | | | | | | | | | | ActiveRecord::ConnectionAdapters::Table#column_exists? from nil to an empty Hash {}. That method calls through to ActiveRecord::ConnectionAdapters::SchemaStatements##column_exists? expects options to be a Hash. When options was nil, an error would occur in cases where the column did exist because the called method attempted to perform a key lookup on options.