Sha256: 54b6d21f79cf660d205166b2e095758b70d650a9c5229f339d1a14cd3af6276f
Contents?: true
Size: 333 Bytes
Versions: 1
Compression:
Stored size: 333 Bytes
Contents
class Create<%= class_name.pluralize %> < ActiveRecord::Migration def self.up create_table :<%= table_name %> do |t| <% attributes.each do |attribute| %>t.<%= attribute.type %> :<%= attribute.name %> <% end %> t.timestamps end end def self.down drop_table :<%= table_name %> end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
caseadilla-0.0.1 | lib/generators/caseadilla/scaffold/templates/migration.rb |