Preethi Sriram, 2011-11-02 18:58
class AddIsPrivateToDocuments < ActiveRecord::Migration
def self.up
add_column :documents, :is_private, :boolean, :default => false, :null => false
end
def self.down
remove_column :documents, :is_private