Sha256: bda2305942b41539bf2405023aed3bd4bae14124ff357419df98bfc369591700
Contents?: true
Size: 321 Bytes
Versions: 94
Compression:
Stored size: 321 Bytes
Contents
class <%= migration_name %> < ActiveRecord::Migration def self.up create_table :<%= table_name %>, :force => true do |t| <% for attribute in attributes -%> t.<%= attribute.type %> :<%= attribute.name %> <% end -%> t.timestamps end end def self.down drop_table :<%= table_name %> end end
Version data entries
94 entries across 94 versions & 26 rubygems