Sha256: a6cd72d7293954faf5c5285dce84e4fc9e5daaf55299343e601cfc1e1d81776f
Contents?: true
Size: 418 Bytes
Versions: 34
Compression:
Stored size: 418 Bytes
Contents
class AddTrackersDefaultStatusId < ActiveRecord::Migration def up add_column :trackers, :default_status_id, :integer status_id = IssueStatus.where(:is_default => true).pluck(:id).first status_id ||= IssueStatus.order(:position).pluck(:id).first if status_id Tracker.update_all :default_status_id => status_id end end def down remove_column :trackers, :default_status_id end end
Version data entries
34 entries across 34 versions & 1 rubygems