To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / engines / generators / plugin_migration / templates / plugin_migration.erb @ 442:753f1380d6bc

History | View | Annotate | Download (367 Bytes)

1
class <%= class_name %> < ActiveRecord::Migration
2
  def self.up
3
  <%- plugins.each do |plugin| -%>
4
    Engines.plugins["<%= plugin.name %>"].migrate(<%= new_versions[plugin.name] %>)
5
  <%- end -%>
6
  end
7

    
8
  def self.down
9
  <%- plugins.each do |plugin| -%>
10
    Engines.plugins["<%= plugin.name %>"].migrate(<%= current_versions[plugin.name] %>)
11
  <%- end -%>
12
  end
13
end