You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
249 B

class AddUserstampsToVersions < ActiveRecord::Migration
def change
add_column :versions, :creator_id, :integer
add_column :versions, :updator_id, :integer
add_index :versions, :creator_id
add_index :versions, :updator_id
end
end