GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/zmack/mephisto.git
svenfuchs (author)
Wed Feb 20 11:11:20 -0800 2008
commit  1ad1b56b4a6c9284534b0afbb9d5d87715ae4312
tree    adc435b61f05728a991fd314188bc3e75cfb6038
parent  2772ec18227b04b3cb618748a2900a7b93b84d94
mephisto / vendor / plugins / engines / generators / plugin_migration / templates / plugin_migration.erb
100644 14 lines (12 sloc) 0.367 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class <%= class_name %> < ActiveRecord::Migration
  def self.up
  <%- plugins.each do |plugin| -%>
    Engines.plugins["<%= plugin.name %>"].migrate(<%= new_versions[plugin.name] %>)
  <%- end -%>
  end
 
  def self.down
  <%- plugins.each do |plugin| -%>
    Engines.plugins["<%= plugin.name %>"].migrate(<%= current_versions[plugin.name] %>)
  <%- end -%>
  end
end