blob: 5ba29c6a2147f54bac2f9af6941f9f4d555b600f (
plain) (
tree)
|
|
class <%= migration_name %> < ActiveRecord::Migration
def self.up<% tables.each do |table| %>
create_table :<%= table[:table_name] %>, :id => <%= table[:id].to_s %> do |t|
<% table[:attributes].each do |attribute| -%>
t.<%= attribute.type %> :<%= attribute.name %>
<% end -%>
<%= 't.timestamps' if table[:id] %>
end
<%= "add_index :#{table[:table_name]}, :id" if table[:id] %>
<% end -%>
load(Rails.root.join('db', 'seeds', 'refinerycms_blog.rb').to_s)
end
def self.down
UserPlugin.destroy_all({:name => "refinerycms_blog"})
Page.delete_all({:link_url => "/blog"})
<% tables.each do |table| -%>
drop_table :<%= table[:table_name] %>
<% end -%>
end
end
|