Sha256: d994a8ce1dcac5891282c8cb0a7cab604ff4a0b6fd2d226c029b0c644bf28579
Contents?: true
Size: 355 Bytes
Versions: 4
Compression:
Stored size: 355 Bytes
Contents
class <%= migration_name %> < ActiveGroonga::Migration def self.up create_table :<%= table_name %> do |t| <% for attribute in attributes -%> t.<%= attribute.type %> :<%= attribute.name %> <% end -%> <% unless options[:skip_timestamps] %> t.timestamps <% end -%> end end def self.down drop_table :<%= table_name %> end end
Version data entries
4 entries across 4 versions & 1 rubygems