So do I have to install plugin_migrations to run my migrations now? I installed the plugin_dependencies, loaded_plugins, and plugin_migrations plugins (uggggh) and rake db:migrate:plugins gibs with: rake aborted! can't convert Array into String /Users/tarcieri/src/clickcaster/config/../vendor/plugins/plugin_migrations/tasks/plugin_migrations_tasks.rake:13:in `basename' Awesome
on 26.01.2007 02:09
on 26.01.2007 09:08
Run a plugin_migration yes. And than rake db:migrate. Works fine here.
on 26.01.2007 09:29
No - you don't need to install any other plugins. Run script/generate plugin_migration [PLUGIN=name] To create migrations in your application for your installed plugins. This is different from pluginaweek's "plugin_migrations" plugin - it's a generator that comes with the engines plugin.
on 25.09.2007 22:41
Well, never mind... adding PLUGIN=my_engine solved the problem. Is this the "recommended" way of doing migrations now? - Tony