Sha256: b5d9927e072d68cf2c04aa0da4b7a45f4fd3cb5f69447e86250ef028c7d53475
Contents?: true
Size: 285 Bytes
Versions: 113
Compression:
Stored size: 285 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 -%> end end def self.down drop_table :<%= table_name %> end end
Version data entries
113 entries across 57 versions & 2 rubygems