6 lines
148 B
Ruby
6 lines
148 B
Ruby
|
class AddBoardsCountToProject < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :projects, :boards_count, :integer, :default => false
|
||
|
end
|
||
|
end
|