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
Cleaned rails_root testing migrations so there is only one migration per 
model
rmm5t (author)
Sun Jul 13 13:53:52 -0700 2008
commit  11cad2c0a15d1f8ea66b0c2458e30444a5c0b4e0
tree    a5141625674adc1883b674b44a64be6d332c07e9
parent  e1a54268b0fd318b952889fef319e89164b9a4e7
...
4
5
6
 
7
8
9
...
4
5
6
7
8
9
10
0
@@ -4,6 +4,7 @@ class CreateUsers < ActiveRecord::Migration
0
       t.column :name, :string
0
       t.column :email, :string
0
       t.column :age, :integer
0
+ t.column :ssn, :string
0
     end
0
     add_index :users, :email
0
     add_index :users, :name
...
4
5
6
 
7
8
9
...
4
5
6
7
8
9
10
0
@@ -4,6 +4,7 @@ class CreateAddresses < ActiveRecord::Migration
0
       t.column :title, :string
0
       t.column :addressable_id, :integer
0
       t.column :addressable_type, :string
0
+ t.column :zip, :string
0
     end
0
   end
0
 

Comments

    No one has commented yet.