To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / vendor / plugins / engines / generators / plugin_migration / templates / plugin_migration.html.erb @ 918:04114f36670d
History | View | Annotate | Download (367 Bytes)
| 1 | 0:513646585e45 | Chris | 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 |