Sha256: d7d3c0ddcb9d57d8814f2f7d0bb342b832911566db297919e5154a91c972fc49
Contents?: true
Size: 487 Bytes
Versions: 182
Compression:
Stored size: 487 Bytes
Contents
class <%= migration_class_name %> < ActiveRecord::Migration def change create_table :<%= table_name %> do |t| <% attributes.each do |attribute| -%> t.<%= attribute.type %> :<%= attribute.name %><%= attribute.inject_options %> <% end -%> <% if options[:timestamps] %> t.timestamps <% end -%> end <% attributes_with_index.each do |attribute| -%> add_index :<%= table_name %>, :<%= attribute.index_name %><%= attribute.inject_index_options %> <% end -%> end end
Version data entries
182 entries across 151 versions & 16 rubygems