public
Rubygem
Fork of thoughtbot/shoulda
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/technicalpickles/shoulda.git
shoulda / test / rails_root / db / migrate / 007_create_fleas.rb
100644 12 lines (10 sloc) 0.173 kb
1
2
3
4
5
6
7
8
9
10
11
12
class CreateFleas < ActiveRecord::Migration
  def self.up
    create_table :fleas do |t|
      t.string :name
    end
  end
 
  def self.down
    drop_table :fleas
  end
end