public
Rubygem
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/thoughtbot/shoulda.git
tsaleh (author)
Sat Apr 26 14:42:14 -0700 2008
commit  28d9140a7ea45f9a305b251a544ead425fcd58e4
tree    f2dd24073247c9ccd8572e4d778c39247bcdad55
parent  102fe37adc9a9b2c23132791bf16c0ff13553b3b
shoulda / test / rails_root / db / migrate / 008_create_dogs_fleas.rb
100644 13 lines (11 sloc) 0.215 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateDogsFleas < ActiveRecord::Migration
  def self.up
    create_table :dogs_fleas do |t|
      t.integer :dog_id
      t.integer :flea_id
    end
  end
 
  def self.down
    drop_table :dogs_fleas
  end
end