| Commit message (Expand) | Author | Age | Files | Lines |
* | schema loading rake tasks maintain database connection for current env. | Yves Senn | 2014-09-03 | 1 | -0/+1 |
* | Add ActiveRecord::Tasks::DatabaseTasks.migrate | Jack Danger Canty | 2014-07-31 | 1 | -0/+13 |
* | tests, run adapter specific rake tests only for the right adapter. | Yves Senn | 2014-07-24 | 3 | -0/+6 |
* | build fix, fix error introduced with 091b246bb0111357edbb9703ea342a944b04deb6 | Yves Senn | 2014-07-24 | 1 | -2/+2 |
* | Active Record tests still depend on `capture`. Let's keep it for now. | Yves Senn | 2014-07-16 | 1 | -19/+0 |
* | Keep quietly and capture undeprecated on your suite | Rafael Mendonça França | 2014-07-15 | 1 | -0/+19 |
* | add `bin/rake db:purge` task to empty the current database. | Yves Senn | 2014-06-17 | 1 | -0/+28 |
* | fix typo in test method names. [ci skip] | Yves Senn | 2014-06-17 | 1 | -4/+4 |
* | create/drop test and development databases only if RAILS_ENV is nil | Damien Mathieu | 2014-01-08 | 1 | -2/+24 |
* | Fix failure introduced from #13488 | schneems | 2013-12-25 | 1 | -1/+1 |
* | require the files we test | Aaron Patterson | 2013-11-25 | 1 | -0/+1 |
* | Revert "Properly require database tasks so we have access to the raised const... | Rafael Mendonça França | 2013-11-19 | 3 | -3/+0 |
* | Revert "Explicitly exit with status "1" for create and drop failures" | Rafael Mendonça França | 2013-11-19 | 3 | -18/+6 |
* | Properly require database tasks so we have access to the raised constant | Carlos Antonio da Silva | 2013-11-17 | 3 | -0/+3 |
* | Merge pull request #12531 from iamvery/database-tasks-exit-status | Rafael Mendonça França | 2013-11-15 | 3 | -6/+18 |
|\ |
|
| * | Explicitly exit with status "1" for create and drop failures | Jay Hayes | 2013-11-11 | 3 | -6/+18 |
* | | Don't skip tests if we don't need to. | Rafael Mendonça França | 2013-11-08 | 1 | -75/+74 |
* | | More Warnings removed for ruby trunk | Arun Agrawal | 2013-11-01 | 1 | -1/+1 |
* | | Warnings removed for ruby trunk | Arun Agrawal | 2013-11-01 | 1 | -3/+3 |
* | | Fix loading a sql structure file on postgres when the file's path has whitesp... | Kevin Mook | 2013-10-21 | 1 | -0/+7 |
* | | Convert Fixnum into String the port number in MySQL | Kenta Okamoto | 2013-10-18 | 1 | -0/+9 |
|/ |
|
* | Remove FirebirdDatabaseTasks was deprecated, because this was provided by 3rd... | kennyj | 2013-06-05 | 1 | -100/+0 |
* | Remove SqlseverDatabaseTasks was deprecated, because this was provided by 3rd... | kennyj | 2013-06-05 | 1 | -87/+0 |
* | Remove OracleDatabaseTasks was deprecated, because this was provided by 3rd-p... | kennyj | 2013-06-05 | 1 | -93/+0 |
* | Mute psql output when running rake db:schema:load | Godfrey Chan | 2013-04-30 | 1 | -1/+1 |
* | Abort a rake task when missing db/structure.sql like `db:schema:load` task. | kennyj | 2013-05-01 | 1 | -0/+7 |
* | Show deprecated messages only when target database adapters defined | Yasuo Honda | 2013-04-03 | 3 | -3/+3 |
* | Fix tiny problem: change method order for consistency and fix wrong method name. | kennyj | 2013-04-03 | 1 | -1/+1 |
* | Suppress deprecation messages for deprecated database tasks, when executing r... | kennyj | 2013-04-03 | 3 | -0/+21 |
* | Extract Oracle database tasks. | kennyj | 2013-04-03 | 1 | -0/+86 |
* | Extract Sqlserver database tasks. | kennyj | 2013-04-03 | 1 | -0/+80 |
* | Extract Firebird database tasks. | kennyj | 2013-04-03 | 1 | -0/+93 |
* | `rake db:create` does not change permissions of root user. | Yves Senn | 2013-03-17 | 1 | -2/+18 |
* | rake db:structure:dump warns when `mysqldump` is not in PATH. | Yves Senn | 2013-03-06 | 1 | -1/+12 |
* | Raise a specific exception with a useful message if a rake task is requested ... | Daniel Azuma | 2013-01-30 | 1 | -0/+6 |
* | Revert "Merge pull request #8942 from yahonda/tested_only_with_mysql" | Carlos Antonio da Silva | 2013-01-15 | 1 | -4/+0 |
* | Address test_create_when_database_exists_outputs_info_to_stderr failures | Yasuo Honda | 2013-01-15 | 1 | -0/+4 |
* | Bring back "database already exists" messages when running rake tasks | Carlos Antonio da Silva | 2013-01-12 | 3 | -7/+27 |
* | Style: remove hash noise | Jeremy Kemper | 2012-09-21 | 1 | -10/+10 |
* | Correct default charset/collation for mysql dbs | Jeremy Kemper | 2012-09-21 | 1 | -9/+21 |
* | Use configuration['encoding'], because database configuration use not charset... | kennyj | 2012-09-12 | 1 | -2/+2 |
* | Use native mysqldump command for 'rake db:structure:dump'. | kennyj | 2012-09-12 | 1 | -15/+2 |
* | Use the 'mysql' binary for 'rake db:structure:load'. | Seamus Abshere | 2012-09-05 | 1 | -5/+2 |
* | Merge pull request #7196 from rimidl/fix-incorrect-require-mysql-in-mysql_rak... | Aaron Patterson | 2012-07-29 | 1 | -1/+5 |
|\ |
|
| * | fix incorrect usage `require mysql` in the activerecord/test/.../mysql_rake_t... | Vladimir Strakhov | 2012-07-29 | 1 | -1/+5 |
* | | More polite cleanup for sqlite tests | Bogdan Gusiev | 2012-07-29 | 1 | -4/+4 |
|/ |
|
* | Merge pull request #6838 from kennyj/added_registration_task | Carlos Antonio da Silva | 2012-07-07 | 1 | -0/+16 |
|\ |
|
| * | Added a feature to add a database task. e.g. OracleDatabaseTasks | kennyj | 2012-06-24 | 1 | -0/+16 |
* | | Unify the collation API for the database adpters | Rafael Mendonça França | 2012-07-01 | 1 | -4/+4 |
* | | Extract collation tasks to database tasks. | kennyj | 2012-07-01 | 4 | -0/+68 |