module <%= file_name.camelize %>

class Engine < ::Rails::Engine
  isolate_namespace <%= file_name.camelize %>

  initializer :append_migrations do |app|
    unless app.root.to_s.match root.to_s+File::SEPARATOR
      app.config.paths["db/migrate"].concat config.paths["db/migrate"].expanded
    end
  end
end

end