class CreateSnippets < ActiveRecord::Migration def self.up Snippet.create({ :name => 'CartOverview', :content => <<-BEGIN checkout

Your cart is empty

BEGIN }) end def self.down end end