Sha256: 56c6f7f66d2e06c2d81f913f5bad93285a672abe394080c87b77b4718bc7f57c
Contents?: true
Size: 489 Bytes
Versions: 34
Compression:
Stored size: 489 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
34 entries across 34 versions & 1 rubygems