Project

General

Profile

Feature #7554 » 20111018230249_add_assigned_to_id_to_documents.rb

Preethi Sriram, 2011-11-02 18:58

 
1
class AddAssignedToIdToDocuments < ActiveRecord::Migration
2
  def self.up
3
    add_column :documents, :assigned_to_id, :integer
4
  end
5

    
6
  def self.down
7
    remove_column :documents, :assigned_to_id
8
  end
9
end
(3-3/6)