X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=db%2Fmigrate%2F20090202163608_add_test_data.rb;h=4ccb3c0e488dad5c6af39051a9522b4c8b9db4a4;hb=HEAD;hp=5b79b4f3312214bfcc0df4d26ca21e050cf3c2bb;hpb=09cd438e77dd418b03b67e3e6a4b48ec95b72d1d;p=depot.git diff --git a/db/migrate/20090202163608_add_test_data.rb b/db/migrate/20090202163608_add_test_data.rb index 5b79b4f..4ccb3c0 100644 --- a/db/migrate/20090202163608_add_test_data.rb +++ b/db/migrate/20090202163608_add_test_data.rb @@ -4,26 +4,23 @@ class AddTestData < ActiveRecord::Migration Product.create(:title => 'Snowball', :description => - %{

- The perfect gift for a hot summer's day. What could be better + %{

The perfect gift for a hot summer's day. What could be better than to surprise a loved one a gift of winter coolness? This snowball has been loving crafted from the purest snow, hand-collected from the pristine lawn of our back garden.

-

- Note that this is a perisiable item and some melting may occur +

Note that this is a perishable item and some melting may occur while the snowball is in transit.

}, :image_url => '/images/snowball.jpg', - :price => 12.00, + :price => 11.99, :date_available => Time.utc(2008, 12, 31) ) Product.create(:title => 'Daisy', :description => - %{

- All the world is better for having flowers in it. And your home + %{

All the world is better for having flowers in it. And your home will be the better for having this fine example of Bellis perennis gracing its walls. The range of uses of this item are truly remarkable. You can place it in an eggcup of water, you can @@ -32,14 +29,14 @@ class AddTestData < ActiveRecord::Migration

}, :image_url => '/images/daisy.gif', - :price => 5.00, + :price => 4.99, :date_available => Time.utc(2011, 7, 1) ) Product.create(:title => 'Cardboard Box', :description => %{

The gift that keeps on giving, you'll wonder how you ever did - without a cardboard box in your home. Us it for a range of uses, + without a cardboard box in your home. Use it for a range of uses, including putting things in and keeping things in. We can provide you with a cardboard box that is versatile and suitable for any occasion. Some of our directors even use them for sleeping in! @@ -50,7 +47,7 @@ class AddTestData < ActiveRecord::Migration :date_available => Time.utc(2007, 1, 1) ) - Product.create(:title => 'Air', + Product.create(:title => 'Air in a Can', :description => %{

An essential for all activities, Air is vital for your wellbeing and vitality. Our air is carefully packaged to contain @@ -60,7 +57,7 @@ class AddTestData < ActiveRecord::Migration

}, :image_url => '/images/can-of-air.jpg', - :price => 5000.00, + :price => 4999.95, :date_available => Time.utc(2009, 1, 1) ) end