20110923211333_add_status_to_issue.rb 149 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 class AddStatusToIssue < ActiveRecord::Migration def change add_column :issues, :closed, :boolean, :default => false, :null => false end end