Plugin migrations for Redmine
I'm developing a plugin for Redmine. How do I create a migration for it? If I use script/generate plugin_migration, it'll be placed in /db/migrate folder, but I need it to be in my plugin's folder. You can use script/generate migration to create the migration and then move it into the plugin directory. When you move it, make sure to change from the timestamped format (20090719...) to the integer format (001_...) I tend to just create the migrations by hand myself since they are pretty basic. Eric Davis The way most plugins do it (thinking of restful_authentication and others) is to have a