class<%= migration_class_name %> < ActiveRecord::Migration def self.up create_table :<%=table_name%> do |t|<% for attribute in attributes -%>t.<%= attribute.type %> :<%=attribute.name%><% end -%><% if options[:timestamps]%> t.timestamps<% end -%>endenddefself.downdrop_table:<%=table_name%>endend