Sha256: 2ceeafa677b8a7a09144e70a32dffec1a99a87f750e7a47f0b05188f2ddc9718
Contents?: true
Size: 319 Bytes
Versions: 18
Compression:
Stored size: 319 Bytes
Contents
class <%= migration_file_name.camelize %>Migration < Sequel::Migration def up create_table :<%= table_name %> do primary_key :id <% attributes.each do |attribute| -%> <%= attribute.type_class %> :<%= attribute.name %> <% end -%> end end def down drop_table :<%= table_name %> end end
Version data entries
18 entries across 18 versions & 4 rubygems