Sha256: 17c723bb33ee566aee930d587ab6163f847b5881be3eb04a83329f94985ac07a
Contents?: true
Size: 475 Bytes
Versions: 7
Compression:
Stored size: 475 Bytes
Contents
# For details on Sequel migrations see: # * http://sequel.rubyforge.org/ # * http://sequel.rubyforge.org/rdoc-plugins/classes/Sequel/Migration.html class <%= class_name %> < Sequel::Migration def up <% if model -%> create_table :<%= table_name -%> do primary_key :id <% attributes.each do |name, type| -%> <%= type %> :<%= name %> <% end -%> end <% end -%> end def down <% if model -%> drop_table :<%= table_name %> <% end -%> end end
Version data entries
7 entries across 7 versions & 2 rubygems