socialforge/db/migrate/20160111064927_add_issues_c...

6 lines
148 B
Ruby
Raw Normal View History

2016-01-11 14:57:52 +08:00
class AddIssuesCountToProject < ActiveRecord::Migration
def change
add_column :projects, :issues_count, :integer, :default => false
end
end