comparison .svn/pristine/31/31fa3914a91d4720d86c081f871b079fae9c31a5.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1295:622f24f53b42
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