class <%= file_name.camelize %>Seed < AmbitiousSeeder::Seed def self.up # Interact with classes as normal here, eg: # Product.create(:sku => '1234') end def self.down # If possible, reverse the migration. # Product.delete(Product.where(:sku => '1234')) # You may also want to consider any associations, and whether they should deleted automatically, or manually in this method. # If it's not possible (or not a good idea) to reverse this migration, remove the method :) end end