Sha256: bfb0db19711e2e571ad794c56a204468c4b6a9f6d1615e81d2243e0ca7899574
Contents?: true
Size: 429 Bytes
Versions: 20
Compression:
Stored size: 429 Bytes
Contents
class <%= migration_name %> < ActiveRecord::Migration def self.up create_table :<%= table_name %> do |t| <% for attribute in attributes -%> t.<%= attribute.type %> :<%= attribute.name %> <% end -%> <% for model in belongs_tos -%> t.references :<%= model %> <% end -%> <% unless options[:skip_timestamps] %> t.timestamps <% end -%> end end def self.down drop_table :<%= table_name %> end end
Version data entries
20 entries across 17 versions & 5 rubygems