socialforge/db/migrate/20160111065215_add_boards_c...

6 lines
148 B
Ruby

class AddBoardsCountToProject < ActiveRecord::Migration
def change
add_column :projects, :boards_count, :integer, :default => false
end
end