35a0a7a12380a48298424322357c7443c8d7e002
[depot.git] / db / migrate / 20090202163608_add_test_data.rb
1 class AddTestData < ActiveRecord::Migration
2 def self.up
3 Product.delete_all
4
5 Product.create(:title => 'Snowball',
6 :description =>
7 %{<p>The perfect gift for a hot summer's day. What could be better
8 than to surprise a loved one a gift of winter coolness? This
9 snowball has been loving crafted from the purest snow, hand-collected
10 from the pristine lawn of our back garden.
11 </p>
12 <p>Note that this is a perishable item and some melting may occur
13 while the snowball is in transit.
14 </p>
15 },
16 :image_url => '/images/snowball.jpg',
17 :price => 11.99,
18 :date_available => Time.utc(2008, 12, 31)
19 )
20
21 Product.create(:title => 'Daisy',
22 :description =>
23 %{<p>All the world is better for having flowers in it. And your home
24 will be the better for having this fine example of <i>Bellis
25 perennis</i> gracing its walls. The range of uses of this item are
26 truly remarkable. You can place it in an eggcup of water, you can
27 insert it in a jacket for a subtle buttonhole posy, or you even
28 purchase a multi-pack to create your own daisy chain!
29 </p>
30 },
31 :image_url => '/images/daisy.gif',
32 :price => 5.00,
33 :date_available => Time.utc(2011, 7, 1)
34 )
35
36 Product.create(:title => 'Cardboard Box',
37 :description =>
38 %{<p>The gift that keeps on giving, you'll wonder how you ever did
39 without a cardboard box in your home. Us it for a range of uses,
40 including putting things in and keeping things in. We can provide
41 you with a cardboard box that is versatile and suitable for any
42 occasion. Some of our directors even use them for sleeping in!
43 </p>
44 },
45 :image_url => '/images/cardboard-box.jpg',
46 :price => 10.00,
47 :date_available => Time.utc(2007, 1, 1)
48 )
49
50 Product.create(:title => 'Air in a Can',
51 :description =>
52 %{<p>An essential for all activities, <i>Air</i> is vital for your
53 wellbeing and vitality. Our air is carefully packaged to contain
54 only 100% pure air, with no artificial colours or preservatives.
55 </p>
56 <p>May contain nuts.
57 </p>
58 },
59 :image_url => '/images/can-of-air.jpg',
60 :price => 5000.00,
61 :date_available => Time.utc(2009, 1, 1)
62 )
63 end
64
65 def self.down
66 Product.delete_all
67 end
68 end