Sha256: 836c3e9e536fb9745e347812b7cf9ad221aa53a22f9c134dcdd8d514e8fd82c9
Contents?: true
Size: 294 Bytes
Versions: 139
Compression:
Stored size: 294 Bytes
Contents
class <%= migration_name %> < ActiveRecord::Migration def self.up create_table :<%= table_name %> do |t| <% for attribute in attributes -%> t.column :<%= attribute.name %>, :<%= attribute.type %> <% end -%> end end def self.down drop_table :<%= table_name %> end end
Version data entries
139 entries across 88 versions & 12 rubygems