2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-12-19 15:30:14 +00:00
|
|
|
class AddHasIssuesToProjects < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
add_column :projects, :has_issues, :boolean, :default => true
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :projects, :has_issues
|
|
|
|
end
|
|
|
|
end
|