Mercurial > hg > soundsoftware-site
comparison lib/generators/redmine_plugin_model/templates/migration.rb @ 1115:433d4f72a19b redmine-2.2
Update to Redmine SVN revision 11137 on 2.2-stable branch
author | Chris Cannam |
---|---|
date | Mon, 07 Jan 2013 12:01:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
929:5f33065ddc4b | 1115:433d4f72a19b |
---|---|
1 class <%= @migration_class_name %> < ActiveRecord::Migration | |
2 def change | |
3 create_table :<%= @table_name %> do |t| | |
4 <% attributes.each do |attribute| -%> | |
5 t.<%= attribute.type %> :<%= attribute.name %><%= attribute.inject_options %> | |
6 <% end -%> | |
7 <% if options[:timestamps] %> | |
8 t.timestamps | |
9 <% end -%> | |
10 end | |
11 <% attributes_with_index.each do |attribute| -%> | |
12 add_index :<%= table_name %>, :<%= attribute.index_name %><%= attribute.inject_index_options %> | |
13 <% end -%> | |
14 end | |
15 end |