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