diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-10-02 15:46:30 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-10-02 15:50:58 +0900 |
commit | 87598c8c80f4cbeef114267d75c46f1c87ca057a (patch) | |
tree | 72b6bc36d9fece2a72b2d28ed4bab26820480dbf /railties/lib | |
parent | 1a2a63f1e07253a2e07c09b82cddd00f661523b2 (diff) | |
download | rails-87598c8c80f4cbeef114267d75c46f1c87ca057a.tar.gz rails-87598c8c80f4cbeef114267d75c46f1c87ca057a.tar.bz2 rails-87598c8c80f4cbeef114267d75c46f1c87ca057a.zip |
Make automatically synchronize test schema work inside engine
In Rails engine, migration files are in under `db/migrate` of engine.
Therefore, when rake task is executed in engine, `db/migrate` is
automatically added to `DatabaseTasks.migrations_paths`.
https://github.com/rails/rails/blob/a18cf23a9cbcbeed61e8049442640c7153e0a8fb/activerecord/lib/active_record/railtie.rb#L39..L43
However, if execute the rake task under dummy app, migration files will not
be loaded because engine's migration path setting process is not called.
Therefore, in order to load migration files correctly, it is necessary to
execute rake task under engine.
Fixes #30765
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/tasks/engine.rake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/railties/lib/rails/tasks/engine.rake b/railties/lib/rails/tasks/engine.rake index 3ce49a1641..c967c54aa5 100644 --- a/railties/lib/rails/tasks/engine.rake +++ b/railties/lib/rails/tasks/engine.rake @@ -70,6 +70,9 @@ namespace :db do desc "Retrieves the current schema version number" app_task "version" + + # desc 'Load the test schema' + app_task "test:prepare" end def find_engine_path(path) |